Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
We noticed that your app requests the user’s consent to access their camera but does not clarify the use of this feature in the permission modal alert.
Please see attached screenshots for details.
Next Steps
To resolve this issue, please revise the permission modal alert to specify why the app is requesting access to the user's camera.
Resources
To learn more about requesting the user’s permission to access app features, visit the iOS Human Interface Guidelines. 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.
解决方案:(待验证)在info.plist,详细说明各项权限的用途.
<key>NSCameraUsageDescription</key>
<string>需要扫描二维码或拍照,是否允许打开相机?</string>
<key>NSMicrophoneUsageDescription</key>
<string>需要录制音频,是否允许打开麦克风?</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string></string>
<key>NSPhotoLibraryUsageDescription</key>
<string>需要添加图片,是否允许打开相册?</string>