使用 ALAssetPropertyAssetURL 获取 ALAsset 的 UID URL
Posted
技术标签:
【中文标题】使用 ALAssetPropertyAssetURL 获取 ALAsset 的 UID URL【英文标题】:Get UID URL for ALAsset with ALAssetPropertyAssetURL 【发布时间】:2015-05-27 06:01:06 【问题描述】:我通过调用 [asset valueForProperty:ALAssetPropertyAssetURL] 来获取资产 URL,有时它返回 nil 或者可能是资产为 nil(我在崩溃日志中看到过)。 我已阅读文档:
ALAssetPropertyAssetURL
The key to retrieve a URL identifier for the asset.
The corresponding value is an NSURL object.
This URL is used by the library-change notifications to identify assets and asset groups. Only the ALAssetRepresentation and ALAssetsGroup classes support this property.
我认为这意味着我无法从 ALAsset 获取 ALAssetPropertyAssetURL 属性,但它在我运行它的任何时候都可以工作。
问题:
-
如何获取资产 url 以在 [PHAsset fetchAssetsWithALAssetURLs: ....] 中使用它?
UPD
我不明白:“如果只有 ALAssetRepresentation 和 ALAssetsGroup 类支持此属性,如何获取 URL?”
【问题讨论】:
【参考方案1】:我们可以对 ALAsset
对象使用类似的东西
[[asset defaultRepresentation] url]
【讨论】:
对不起,这个方法在以后的ios中会被弃用。 是的。我们将不得不使用 PhotosLibrary 而不是 AssetsLibrary 您必须改用 PHAsset。以上是关于使用 ALAssetPropertyAssetURL 获取 ALAsset 的 UID URL的主要内容,如果未能解决你的问题,请参考以下文章
在使用加载数据流步骤的猪中,使用(使用 PigStorage)和不使用它有啥区别?
Qt静态编译时使用OpenSSL有三种方式(不使用,动态使用,静态使用,默认是动态使用)