升級(jí)Xcode8 之后打開項(xiàng)目,打開相冊(cè),立即崩潰,打印出的日志如下:
This app has crashed because it attempted to access privacy-sensitive data without a
usage description. The app's Info.plist must contain an NSPhotoLibraryUsageDescription key
with a string value explaining to the user how the app uses this data.
意思是說(shuō):你需要在info.plist文件 添加一個(gè)NSContactsUsageDescription的Key,Value添加一個(gè)描述。
相機(jī)權(quán)限描述:
<key>NSCameraUsageDescription</key>
<string>cameraDesciption</string>
通信錄:
<key>NSContactsUsageDescription</key>
<string>contactsDesciption</string>
麥克風(fēng):
<key>NSMicrophoneUsageDescription</key>
<string>microphoneDesciption</string>
相冊(cè):
<key>NSPhotoLibraryUsageDescription</key>
<string>photoLibraryDesciption</string>