iOS Flip UIImageView 180 degree (not animated)
In viewDidLoad
or in the method where you are loading the image, do the following:
imageView.transform = CGAffineTransformMakeRotation(M_PI);
Hope this helps.
Swift 5.2
imageView.transform = CGAffineTransform(rotationAngle: CGFloat.pi)