Rotate An ImageTable of contents
This recipe shows how to rotate an image on the screen using a UIImageView and a CGAffineTransform. Sample Code: Related Articles: Related Apple Documentation: Recipe
UIImage _image; UIImageView _imageView;
_image = UIImage.FromFile("monkey.png");
_imageView = new UIImageView(new RectangleF(50,50,100,100));
_imageView.ContentMode = UIViewContentMode.ScaleAspectFit;
_imageView.Image = _image;
_imageView.Transform = CGAffineTransform.MakeRotation((float)Math.PI/4); View.AddSubview (_imageView); Additional InformationThe CGAffineTransform has helper functions to return various affine transforms such as rotation, scale and translation. Setting a CGAffineTransform to the Transform property of a UIView applies the transformation matrix to the view. |