I am picking image using UIImagePickerController
but I also need image’s name and other metadata information. I could have fetched image asset using ALAsssetsLibrary’s
assetForURL:resultBlock:failure
method with the help of referenceURL provided by UIImagePickerController
after picking image but that method/Framework is deprecated in iOS9. I searched for its equivalent method in Photos Framework
but I didn’t find one.
Let me know its equivalent method or any other way to fetch selected image’s metadata using Photos Framework
.