I have AllowEditing set to true, and after the image is captured, I want to give additional instructions in the editing screen to crop out part of the image. Is that possible?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
UIImagePickerViewControlleris in fact aUINavigationController. This gives you the ability to track on which step in the UINavigationViewController you are, so you can set the overlay view only when the second view controller is reached.In brief:
– UIImagePickerController.delegate = self
– make self conform to the UINavigationControllerDelegate protocol
– implement next method: