App上线-The permission request alert should specify how your app will use this feature to help users understand why your app is requesting access to their personal data.

报错信息:相机权限访问警报(指定您的应用如何使用此功能来帮助用户了解您的应用请求访问个人数据的原因)

The permission request alert should specify how your app will use this feature to help users understand why your app is requesting access to their personal data.

 

Resources

 

For additional information and instructions on configuring and presenting an alert, please review the Requesting Permission section of the iOS Human Interface Guidelines and the Information Property List Key Reference. You may also want to review the Technical Q&A QA1937: Resolving the Privacy-Sensitive Data App Rejection page for details on how to provide a usage description for permission request alerts.

 

Learn more about Protecting the User’s Privacy.

 

Please see attached screenshots for details.

权限请求警报应指定您的应用如何使用此功能来帮助用户了解您的应用请求访问其个人数据的原因。

 

资源

 

有关配置和显示警报的其他信息和说明,请查看iOS人机界面指南的“请求权限”部分和“信息属性列表”主要参考。 您可能还需要查看技术问答QA1937:解决隐私敏感数据应用程序拒绝页面,以获取有关如何提供权限请求警报的使用说明的详细信息。

 

了解有关保护用户隐私的更多信息。

 

有关详情,请参阅随附的屏幕截图。

解决办法:修改info.plist关于相机访问权限描述的文案修改

添以下字段:

        <key>CFBundleDevelopmentRegion</key>
    <string>zh_CN</string>
         <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
    </dict>
    <key>NSBluetoothPeripheralUsageDescription</key>
    <string>是否许允此App使用蓝牙?</string>
    <key>NSCalendarsUsageDescription</key>
    <string>是否允许此App使用日历?</string>
    <key>NSCameraUsageDescription</key>
    <string>是否允许此App使用您的相机?用来设置您的头像和背景</string>
    <key>NSContactsUsageDescription</key>
    <string>是否允许此App访问您的通讯录?</string>
    <key>NSLocationAlwaysUsageDescription</key>
    <string>是否允许此App访问您的地理位置?</string>
    <key>NSLocationWhenInUseUsageDescription</key>
    <string>是否允许此App访问您的地理位置?</string>
    <key>NSMicrophoneUsageDescription</key>
    <string>是否允许此App使用您的麦克风?</string>
    <key>NSPhotoLibraryAddUsageDescription</key>
    <string>是否允许此App为您添加图片?</string>
    <key>NSPhotoLibraryUsageDescription</key>
    <string>是否允许此App访问您的相册?</string>
原文地址:https://www.cnblogs.com/StevenHuSir/p/iOS_Online_CameraAuth.html