I am trying to get location co-ordinates of a saved photo. I have the URL by:
NSURL *photoUrl = [info objectForKey:UIImagePickerControllerReferenceURL];
and now I am trying to use
"valueForProperty:ALAssetPropertyLocation"
which works on an ALAsset object.
How do I get an ALAsset object instance from the photoURL?
I am trying to avoid the "assetForURL" with the result/failure blocks.
thanks, Tarak