-2
我有3個圖像,Square,Portrait和Landscape。我想旋轉角度90,180,270和360度的圖像。如何使用Objective-C?旋轉ios中的imageview
我有3個圖像,Square,Portrait和Landscape。我想旋轉角度90,180,270和360度的圖像。如何使用Objective-C?旋轉ios中的imageview
如果只想顯示圖像,將其添加到ImageView
而做到這一點:
imageView.transform = CGAffineTransformMakeRotation(M_PI_2);
將圖像旋轉90度。希望這有助於.. :)
試試這個
CGAffineTransform變換;
transform = CGAffineTransformRotate(self.imageView.transform, (M_PI/2));
self.imageView.transform = transform;
的ImageView將旋轉基於當前位置....