Very odd UIImagePickerController behavior (Pic attached)
I've been totally unable to get the bottom of this. I am capturing a camera image. My preview image looks like the image below?
The resulting captured image is actually just fine. It's just that the preview appears like the image below?
That's my image there in the middle..... all TINY... ?
Screenshot of issue:
Anyone have any idea?
The code I am using:
//Open the Camera view
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.sour开发者_StackOverflowceType = UIImagePickerControllerSourceTypeCamera;
picker.allowsEditing = YES;
picker.delegate = self;
picker.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:picker animated:YES];
[picker release];
Thanks for any help.
精彩评论