DZNPhotoPickerController
DZNPhotoPickerController copied to clipboard
DZNPhotoEditorViewControllerCropModeCustom frame error
The code is
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.allowsEditing = YES;
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
picker.delegate = self;
picker.cropSize = CGSizeMake(112, 152);
picker.cropMode = DZNPhotoEditorViewControllerCropModeCustom;
But the custom cropView is not as i want
What device is this? iPhone6?
I just came here to say this. I'm running this on the iPhone 5s simulator and seeing it.
iPhone5 and simulator
My output does not match what was within my crop circle. Is this your problem too? Running iPad 2 iOS 8.4.1
@pushtheworldllc This hasn't been specified in the documentation, but you should never present the cropper fullscreen on iPad, but in a popover like you would do with the native UIImagePickerController. Also, try setting it with a 320pts content width.