我知道如何通過在界限內重新繪製UIImage來翻轉/反射/旋轉UIImage。iPhone iOS如何翻轉/反射任何UIView的地方?
- (IBAction)reflectImageView:(UIImageView)imageView {
UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, NO, 0.0);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextScaleCTM(context, 1.0, -1.0);
CGContextTranslateCTM(context, 0.0, -imageView.bounds.size.height);
[imageView.layer renderInContext:context];
imageView.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}
但是,如何爲任何UIView創建「翻轉/反射」效果,最好是保持它與以前相同的位置?
謝謝!
你的問題是我的答案如何旋轉圖像:P謝謝+1 –