This question already has answers here:
How to save recorded video into photo album?

(3个答案)


7年前关闭。




如何在iOS中将文档目录中的视频保存到图库,在这里我从服务器上下载了视频并保存在文档目录中,现在我想将其移动到图库中。

最佳答案

UISaveVideoAtPathToSavedPhotosAlbum(sourcePath,nil,nil,nil);

您可以将sourcePath传递为
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];

附加路径或文件名以获取sourcePath。
NSString *sourcePath = [documentsDirectory stringByAppendingPathComponent:@"youVideo.mp4"];

10-04 11:03