Quote:
Originally Posted by alextrob
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);
|
Wow, no actually I haddn't gotten an answer yet.. Thank you so much!!
I will give this a shot
Thank you!!!