iOS10 許可權崩潰問題

Kaitiren發表於2016-09-27

      iOS10 許可權崩潰問題

       今天 手機升級了 iOS10 Beta,然後用正在開發的專案 裝了個ipa包,發現點選有關 許可權訪問 直接Crash了,並在控制檯輸出了一些資訊:

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檔案 新增一個“NSContactsUsageDescription ”的Key,Value新增一個描述。


1,在專案中找到info.plist檔案,右擊有個 Open As,以Source Code 的形式開啟

2,分別複製 以下 Value 和Key,Key 一定不能錯,Value 貌似可以隨便填寫


相機許可權描述:

    <key>NSCameraUsageDescription</key>
    <string>cameraDesciption</string>

通訊錄:
    <key>NSContactsUsageDescription</key>
    <string>contactsDesciption</string>

麥克風:
    <key>NSMicrophoneUsageDescription</key>
    <string>microphoneDesciption</string>

相機:
    <key>NSPhotoLibraryUsageDescription</key>
    <string>photoLibraryDesciption</string>


eg:其他許可權描述,debug 控制檯都會有輸出的,自行新增就OK

每日更新關注:http://weibo.com/hanjunqiang  新浪微博!

3,在info.plist 檔案上 複製上,然後 儲存,如下圖:

Source Code 的形式:



Property List 的展現形式:



4,Clean之後,執行就OK了

相關文章