How to programmatically rotate the view by 180 degrees in my iPhone App?
Same outcome as @Manny's answer using a different function.
CGFloat degreesOfRotation = 180.0; view.transform = CGAffineTransformRotate(view.transform, degreesOfRotation * M_PI/180.0);