Skip to content

Instantly share code, notes, and snippets.

@tudormunteanu
Created August 27, 2012 17:09
Show Gist options
  • Select an option

  • Save tudormunteanu/3490451 to your computer and use it in GitHub Desktop.

Select an option

Save tudormunteanu/3490451 to your computer and use it in GitHub Desktop.
UIImage flipped
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