Permission string for camera access

Hello everyone,

I'm currently in the app soumission process and I struggle to find a valid permission string, specially for the camera access.

Could you give me an example of a permission string for camera access that has worked well for you in the app soumission process ?

I wish you a good day !

Charles

Accepted Reply

You mean this, in InfoPlist.strings:

<key>NSCameraUsageDescription</key>

I used

<string>We need to access your camera so you can take a photo and use it as a background image for your events.</string>

but you need to tailor it to your own particular app.

Replies

You mean this, in InfoPlist.strings:

<key>NSCameraUsageDescription</key>

I used

<string>We need to access your camera so you can take a photo and use it as a background image for your events.</string>

but you need to tailor it to your own particular app.

Also check out this video tech talk: Write clear purpose strings.

Thanks darkpaw and Scott !