如何澄清在模态中使用它的目的?

时间:2016-05-06 08:59:10

标签: ios app-store cllocationmanager

在我的应用中我在地图视图上显示用户位置所以我实施了CLLocationManager。二进制拒绝后我得到了以下错误

4.5 - Apps using background location services must provide a reason that clarifies the purpose of the use, using mechanisms described in the Human Interface Guidelines

4.5详细信息

您的应用使用了后台位置服务,但未按照iOS人机界面指南的要求阐明其在位置模式警报中的使用目的。

我们附上了截图供您参考。

后续步骤

请重新配置代码中的UIAlertControllerStyleAlert,并在其消息字段中指定使用背景位置的预期目的。

1 个答案:

答案 0 :(得分:13)

您必须在info.plist中使用NSLocationWhenInUseUsageDescriptionNSLocationAlwaysUsageDescription此密钥编写说明,以便用户知道您的应用使用gps位置的原因。 两个键都将字符串作为值。此字符串显示在GPS权限警报中。

添加info.plist,如下所示。

enter image description here