The solution to do UIImage flipping is with the Objective-C code:
[UIImage imageWithCGImage:img.CGImage scale:1.0 orientation: UIImageOrientationDownMirrored
In Swift.... (6.3.1)
YourUIImage.transform = CGAffineTransformMakeScale(-1, 1)
This also works with a UIView