如何将图像保存在 iPhone 上、图库中、“壁纸”等应用程序中?
嗨 :) 我用壁纸创建应用程序 :) 但我不知道如何将我的图像保存在画廊中 :( 请帮帮我
如何将图像保存在 iPhone 上、图库中、“壁纸”等应用程序中?
嗨 :) 我用壁纸创建应用程序 :) 但我不知道如何将我的图像保存在画廊中 :( 请帮帮我
要保存图像,您可以使用以下代码行:
UIImage *image = [UIImage imageNamed:"someImage.png"];
UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil);
还有一些方法可以检查图像何时完成保存,完整的文档可以在这里找到:http: //developer.apple.com/library/ios/#documentation/uikit/reference/UIKitFunctionReference/Reference/reference.html
在较新的 iOS 版本上,Apple 要求您在 info.plist 中为 key 添加使用描述符Privacy - Photo Library Additions Usage Description
。( NSPhotoLibraryAddUsageDescription
)