Dear Experts,
In "limited access" photos mode, I present a PHPickerViewController
. It shows the entire photo library, with a note at the top saying that the app can only access the items that I select. I select a photo.
In the delegate method, I get a PHPickerResult
containing a plausible-looking string for the assetIdentifier
. It's the same string that I get for that photo in "full access" mode.
Should this photo now be accessible, or do I need to do something else at this point?
When I call fetchAssetsWithLocalIdentifiers
using this assetIdentifier
, I get no results. When I call cloudIdentifierMappingsForLocalIdentifiers
, I get error PHPhotosErrorIdentifierNotFound
. In "full access" mode, both work OK.
What am I missing?
Thanks.