Ser Pounce
Ser Pounce

Reputation: 14571

UIImagePickerController needs access to photos in iOS6?

I normally use the ALAssets library to access photos and display them, but I wanted to provide the user with an alternative in case they didn't feel comfortable giving access to location data. I installed the UIImagePicker, and while it still works fine on iOS5, I noticed on iOS6, when I shut off access to the photos in my app, I get "This app does have access to your photos or videos". Does the UIImagePickerController no long allow non disputed access to the photos?

Upvotes: 1

Views: 212

Answers (1)

Wain
Wain

Reputation: 119041

It doesn't matter which route you take to access the photos, if the user has denied access then none of the options will be permitted to access the photos. The authorisation messages may be a little misleading but the same permissions apply to both access methods.

Upvotes: 2

Related Questions