Да, вы можете вращать и UIImage в предопределенных ImageOrientations:
UIImage * rotatedImage = [UIImage imageWithCGImage: imageObject.CGImage scale: imageObject.scale direction: UIImageOrientationUp];
здесь ориентация заданаПеременная enum:
UIImageOrientationUp,
UIImageOrientationUpMirrored
UIImageOrientationDown
UIImageOrientationDownMirrored
UIImageOrientationLeft
UIImageOrientationRight etc
вращает UIImage.