gpt4 book ai didi

ios4 - 有没有 ALAssetsLibrary 的样本

转载 作者:行者123 更新时间:2023-12-01 06:27:45 28 4
gpt4 key购买 nike

对于iPhone 4,很多API都不能用了。

我正在寻找 UIImageWriteToSavedPhotosAlbum 的替代解决方案。

ALAssetsLibrary 是 Apple 在新的 iOS 4 中的当前解决方案。

谁有这方面的经验,可以提供一些示例或开源项目?

谢谢

最佳答案

你需要做这样的事情 -

ALAssetsLibrary* library=[[ALAssetsLibrary alloc] init] ; 
// Request to save the image to camera roll
[library writeImageToSavedPhotosAlbum:img.CGImage orientation:(ALAssetOrientation)img.imageOrientation
completionBlock:^(NSURL* assetURL, NSError* error) {
if (error != NULL)
// Show error message...
else // No errors
// Show message image successfully saved
}] ;

虽然我正在疯狂地尝试弄清楚如何使此代码与 iphone 3 SDK 兼容。

关于ios4 - 有没有 ALAssetsLibrary 的样本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3618054/

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