john
john

Reputation: 1

question on asset library - objective c

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

Answers (1)

Ole Begemann
Ole Begemann

Reputation: 135548

[asset valueForProperty:ALAssetPropertyURLs];

returns a dictionary that maps asset representations UTIs to URLs. See the documentation for details.

Upvotes: 4

Related Questions