Created
August 27, 2012 17:09
-
-
Save tudormunteanu/3490451 to your computer and use it in GitHub Desktop.
UIImage flipped
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UIImage *arrowRight = [UIImage imageNamed:@"arrow"]; | |
| // horizontal flip | |
| UIImage *arrowLeft = [UIImage imageWithCGImage:arrowRight.CGImage | |
| scale:2.0f orientation:UIImageOrientationUpMirrored]; | |
| // vertical flip | |
| UIImage *arrowLeft = [UIImage imageWithCGImage:arrowRight.CGImage | |
| scale:2.0f orientation:UIImageOrientationDownMirrored]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment