Is it possible to share copy and delete image using UIImagePickerController in SDK3.0?
Is it possible to share copy and delete image using UIImagePickerController in SDK3.0?
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
UIImagePickerControllerclass and it’s delegate protocol are for capturing images that you can use within your application, either by using the camera (if available) or the photo library.You can’t use the interface provided by the
UIImagePickerControllerfor anything other than what is stated above.You can however, use it to pick the image you want. Once that it done, you can do anything with that image within your app. If you want to create a similar interface to the
UIImagePickerController, you can. You can then implement the copy and share functionality from there. I don’t think you can delete images from the user’s photo library though, so that may not be possible.