XCode8向ITunes提交版本,不显示或提示无效的版本

主要是iOS10,对隐私权限有了新的要求.在info.plist里加入如下代码.

    <key>NSCameraUsageDescription</key>
    <string>访问相机</string>
    <key>NSLocationAlwaysUsageDescription</key>
    <string>使用期间一直访问您的位置</string>
    <key>NSLocationUsageDescription</key>
    <string>访问您的位置</string>
    <key>NSLocationWhenInUseUsageDescription</key>
    <string>使用期间访问您的位置</string>
    <key>NSPhotoLibraryUsageDescription</key>
    <string>访问相册</string>  

当然还有其他的权限,请参考 https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html

posted @ 2016-09-20 14:36  NGI.  阅读(610)  评论(0编辑  收藏  举报
GitHub | M1989