I have my app requesting permission to add to the photo library but I don't need read access. I see that there is supposed to be an option for this but I can't find how to ask for this access specifically.
I am doing this:
PHPhotoLibrary.requestAuthorization({status in
if(status == .authorized){
// save
}
})
And that works fine, but the request displayed is for full access.
Can I specify that I only need write access? I have both Privacy keys set up in my info.plist
I am running this on a simulator, ios 11.4