UIImage* sourceImage = [UIImage imageNamed:@"whatever.png"];
UIImage* flippedImage = [UIImage imageWithCGImage:sourceImage.CGImage
scale:1.0 orientation: UIImageOrientationLeftMirrored];
微信扫一扫
UIImage* sourceImage = [UIImage imageNamed:@"whatever.png"];
UIImage* flippedImage = [UIImage imageWithCGImage:sourceImage.CGImage
scale:1.0 orientation: UIImageOrientationLeftMirrored];
相关推荐