How can I flip an UIImageView?
You should be able to flip the view vertically with:
imageView.transform = CGAffineTransformMake( 1, 0, 0, -1, 0, imageView.bounds.size.height );