I am developing the front facing camera app in iPad2 by using the UIImagePickerController.
When I capture the image it\'s shows as flipped from left to
I know this question is really old but it seems like this is a still a common problem. Just set a CGAffineTransform on the cameraViewTransform property on a UIImagePickerController object.
let picker = UIImagePickerController()
picker.cameraViewTransform = CGAffineTransformScale(picker.cameraViewTransform, -1, 1)