앨범에 동영상 저장하는 방법
// 앨범에 파일 복사 ALAssetsLibrary *library = [[ ALAssetsLibrary alloc ] init ]; NSString *plistPath; NSString *rootPath; rootPath= [ NSSearchPathForDirectoriesInDomains ( NSDocumentDirectory , NSUserDomainMask , YES ) objectAtIndex : 0 ]; plistPath = [rootPath stringByAppendingPathComponent :[ NSString stringWithFormat : @"%@.mov" , filenameNow ]]; NSURL *fileURL = [[ NSURL alloc ] initFileURLWithPath :plistPath]; if ([library videoAtPathIsCompatibleWithSavedPhotosAlbum :fileURL]) { [library writeVideoAtPathToSavedPhotosAlbum :fileURL completionBlock :^( NSURL *assetURL, NSError *error){ if (error) { // TODO: error handling NSLog ( @"er...