share, copy and delete in UIImagePickerController in SDK 3.0?
Is it possible to share copy and delete image us开发者_StackOverflow中文版ing UIImagePickerController in SDK3.0?
The UIImagePickerController
class 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 UIImagePickerController
for 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.
精彩评论