gpt4 book ai didi

iphone - 将视频保存到照片库 - iPhone SDK

转载 作者:太空狗 更新时间:2023-10-30 03:58:34 24 4
gpt4 key购买 nike

有什么方法可以将文档目录中的视频保存到照片库中吗?我在文档目录中有视频的链接,我只是不知道如何将它保存到照片应用程序。

谢谢,

凯文

最佳答案

如果您先将其保存在本地目录中,那么您可以将其另存为..

    ALAssetsLibrary *assetLibrary = [[ALAssetsLibrary alloc] init];
[assetLibrary writeVideoAtPathToSavedPhotosAlbum:url completionBlock:^(NSURL *assetURL, NSError *error){
if(error) {
NSLog(@"error while saving to camera roll %@",[error localizedDescription]);
} else {
//For removing the back up copy from the documents directory
NSError *removeError = nil;
[[NSFileManager defaultManager] removeItemAtURL:url error:&removeError];
NSLog(@"%@",[removeError localizedDescription]);
}
}];

关于iphone - 将视频保存到照片库 - iPhone SDK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3851294/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com