升級xcode 8 以后在iOS 10運行程序出奔潰
控制臺出現(xiàn)This app has crashed because it attempted to access privacy-sensitive data without a usage description.The app's Info.plist must contain an NSContactsUsageDescription key with a string value explaining to the user how the app uses this data.
描述的意思是需要在 info.plist 文件添加一個NSPhotoLibraryUsageDescription的 key麻裁,然后添加一個描述。
找到項目中info.plist文件砸喻,在其中添加
<key>NSBluetoothPeripheralUsageDescription</key>
<string>藍牙權限</string>
<key>NSCameraUsageDescription</key>
<string>使用相機權限</string>
<key>NSMicrophoneUsageDescription</key>
<string>使用麥克風權限</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>使用相冊權限</string>
以上<key>注意不能寫錯践付,而<string>則為描述
這是利用Source Code形式打開的info.plist 文件通铲,也可以使用info.plist 文件中的“+”進行添加key值官辈。