Hi Guys,
I'm using this code to draw an image:
How can I turn it upside down without providing a different source image?
I would also like to flip it vertically.
Thanks, Art.
I'm using this code to draw an image:
Code:
UIImage *myImage = [UIImage imageNamed:@"Sun.png"]; // sun in sky
CGPoint imagePoint = CGPointMake(30, 266);
[myImage drawAtPoint:imagePoint];
How can I turn it upside down without providing a different source image?
I would also like to flip it vertically.
Thanks, Art.