The problem is with iPhone6 (iOS 8.1 and iOS 8.1.1) and UIImagePickerController
I use code:
self.imagePickerController = [[UIImagePickerController alloc] init];
[self.imagePickerController setSourceType:UIImagePickerControllerSourceTypeCamera];
self.imagePickerController.showsCameraControls = NO;
self.imagePickerController.cameraDevice = UIImagePickerControllerCameraDeviceFront;
self.imagePickerController.view.layer.borderWidth = 2;
self.imagePickerController.view.layer.borderColor = [UIColor redColor].CGColor;
[self presentViewController:self.imagePickerController animated:YES completion:nil];
But after that on iPhone6 I see the camera view without bottom part (everything is OK on iPhone4s iOS 8.1):
The top part of the image has a ratio of 4:3, to make the camera feed to full screen, you can do the following.