IOS10 flash crash 1:
This app had crashed because it attempted to access privacy-sensitive data without a usage description. The app ' s info.plist must contain an nscamerausagedescription key with a string value explaining to the user how the app u SES this data.
It means: You need to add a "nscontactsusagedescription" Key,value to the Info.plist file to add a description.
Need to be added to the application's Info.plist (using source code mode):
<Key>nscamerausagedescription</Key><String>cameradesciption</String><Key>nscontactsusagedescription</key><string>contactsdesciption</string><key> Nsmicrophoneusagedescription</key><string>microphonedesciption</ String><key>nsphotolibraryusagedescription</key><string> Photolibrarydesciption</string>
WDC2106 iOS10 new features and what developers should pay attention to
Ios10 camera and so on crashes-B