Reputation: 1
i'm currently working on asset library and i would like to find out how to do i get the url path from the ALAsset so that i can other things with it. Thanks
Upvotes: 0
Views: 892
Reputation: 135548
[asset valueForProperty:ALAssetPropertyURLs];
returns a dictionary that maps asset representations UTIs to URLs. See the documentation for details.
Upvotes: 4