when opening working with an UIImagePickerController and setting allowsImageEditing = YES; there is a default cropping frame that is 320x320. In my case, I would like to se
You have to implement it your self.
The picker only performs 320x320 cropping.
So instead set
allowsImageEditing = NO;
Now you will get the full image back. Then you will have to create a view/view controller that will crop to the proportions you desire.