OS 10 裝置許可權問題(相機,相簿等),os許可權
iOS 10 的裝置許可權 需要添加的欄位有:
- <!-- 相簿 -->
- <key>NSPhotoLibraryUsageDescription</key>
- <string>App需要您的同意,才能訪問相簿</string>
- <!-- 相機 -->
- <key>NSCameraUsageDescription</key>
- <string>App需要您的同意,才能訪問相機</string>
- <!-- 麥克風 -->
- <key>NSMicrophoneUsageDescription</key>
- <string>App需要您的同意,才能訪問麥克風</string>
- <!-- 位置 -->
- <key>NSLocationUsageDescription</key>
- <string>App需要您的同意,才能訪問位置</string>
- <!-- 在使用期間訪問位置 -->
- <key>NSLocationWhenInUseUsageDescription</key>
- <string>App需要您的同意,才能在使用期間訪問位置</string>
- <!-- 始終訪問位置 -->
- <key>NSLocationAlwaysUsageDescription</key>
- <string>App需要您的同意,才能始終訪問位置</string>
- <!-- 日曆 -->
- <key>NSCalendarsUsageDescription</key>
- <string>App需要您的同意,才能訪問日曆</string>
- <!-- 提醒事項 -->
- <key>NSRemindersUsageDescription</key>
- <string>App需要您的同意,才能訪問提醒事項</string>
- <!-- 運動與健身 -->
- <key>NSMotionUsageDescription</key> <string>App需要您的同意,才能訪問運動與健身</string>
- <!-- 健康更新 -->
- <key>NSHealthUpdateUsageDescription</key>
- <string>App需要您的同意,才能訪問健康更新 </string>
- <!-- 健康分享 -->
- <key>NSHealthShareUsageDescription</key>
- <string>App需要您的同意,才能訪問健康分享</string>
- <!-- 藍芽 -->
- <key>NSBluetoothPeripheralUsageDescription</key>
- <string>App需要您的同意,才能訪問藍芽</string>
- <!-- 媒體資料庫 -->
- <key>NSAppleMusicUsageDescription</key>
- <string>App需要您的同意,才能訪問媒體資料庫</string>
問題描述:
- This app has 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 uses this data.
-
- 意思是說:你需要在info.plist檔案 添加一個“NSContactsUsageDescription ”的Key,Value添加一個描述。