Reputation: 2682
I am trying to do the following:
I've got images, that I get from Facebook directly. Since they are not formatted in the right ratio (square). I want the user to crop it themselves right after getting them.
My Idea: Adding the image to the allowsEditing View from the native UIImagePickerController.
Is this possible?
Upvotes: 0
Views: 72
Reputation: 601
It's not possible to open native crop. You can only open UIImagePickerController
, with allowsEditing = YES
and select imaged from local library.
You can use this library to solve your problem: https://github.com/TimOliver/TOCropViewController
Upvotes: 1