Iphone – Saving videos to photo library when taken from camera in IPhone

iphonesavevideo

I was wondering if there is a method similar to UIImageWriteToSavedPhotosAlbum(UIImage *image, id completionTarget, SEL completionSelector, void *contextInfo), that saves Videos taken from the iphone camera to the u sers Photo Albums… been trying to look for it in apple docs but havent found anything.

Thanks

Best Answer

After digging around: The answer is there is no such feature in SDK 3.0, however it is coming in 3.1, the method is void UISaveVideoAtPathToSavedPhotosAlbum ( NSString *videoPath, id completionTarget, SEL completionSelector, void *contextInfo );, heres a link http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIKitFunctionReference/Reference/reference.html#//apple_ref/c/func/UISaveVideoAtPathToSavedPhotosAlbum

Related Topic