1. XCode8 Permissions
xCode8.0 start Apple to control the privacy rights more stringent, and the privacy rights corresponding to the description can not be empty, otherwise submitted in the activity and do not see your submitted binary files, and send the following mail to the developer mailbox
2. Permission Description Internationalization
The workaround is to add Privacy-camera usage Description and Privacy-photo Library usage Description in Info.plist.
If you write directly in Info.plist, you can not display the prompt in multiple languages, you want to prompt for multiple languages, you may select the Info.plist file
After you choose Show Raw keys/values, you can display the XML key and value, and the value of key in the infoplist.strings inside the internationalization operation can let the hint produce multi-lingual effect.
Add in Infoplist.strings (Base):
/* Permission Declaration */nsphotolibraryusagedescription = "used to open photos"; Nscamerausagedescription = "Used to open camera";
In Infoplist.strings (Chinese (Simplified)), add:
/* Permission Declaration */nsphotolibraryusagedescription = "for opening album"; Nscamerausagedescription = "For opening the camera";
IOS10 Rights Statement Internationalization