Is it possible to rotate only image in UIImageView? I\'m looking for information about it, but i only found information how rotate UIImageVeiw.
Take a look at rotating the ImageView's layer. You will need to import the QuartzCore library to make that accessible.
myImageView.layer.transform = CGAffineTransformMakeRotation (1.5);