You probably found your answer already, but for anyone else that stumbles upon this question, what you need to do is scale the UIImageView by a
negative amount.
So to flip it horizontally, you do this to your image view:
Code:
myImageView.transform = CGAffineTransformMakeScale(-1, 1);