I’m using UIImagePickerController with source type UIImagePickerControllerSourceTypePhotoLibrary, the idea is i want to display the photo picked to full screen before the delegate will be called like using a navigationController to push to another view?
I’m using UIImagePickerController with source type UIImagePickerControllerSourceTypePhotoLibrary, the idea is i want to display
Share
You can try to change the behavior of delegate method. After you select the image from the camera roll, in the delegate method you can create a new view controller and shown it as modal. Then insert two button in this view controller:
For open again the camera roll, basically, you must call the open method again (i suppose this method is attached as target of a UIButton).