How can I copy/move a movie from Camera Roll to an app’s own Documents folder?
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.
You can implement your delegate method
imagePickerController:didFinishPickingMediaWithInfo:like this –Once the user selects a movie, you get a file URL to a temporary file using the key
UIImagePickerControllerMediaURLin theinfodictionary passed as argument to the delegate method. You can get that and then copy the file to the documents directory usingNSFileManager.