I use UIImagePickerController UIViewas a subview of my own subtext UIViewController's UIView. Nothing special about this, the problem arises when I take a picture. Something like that:
1 The image that I see from the view UIImagePickerControllerlooks something like this:

2 This is what I see when I take a picture ( [self.imagePicker takePicture];
) and put it on UIImageView:

From what I see, the image that comes out is slightly higher on the y axis. Is there a way to solve this? I don't care if I have to use some kind of crop with the image that appears in:
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info;
I can understand this behavior because I use UIViewContentModeScaleAspectFillin UIImageView contentMode, but I would like to be able to tell Y where I want to start looking.