1

我想知道我想要添加到我的应用程序中的功能是否可能/不太可能被 Apple 的审核团队拒绝。

我想在应用程序处于后台时打开重大更改位置服务,然后在为用户找到新位置时触发 Web 请求。

我有兴趣这样做来设置推送通知。我要发送给用户的推送通知需要用户的位置才能有用。

苹果写道:“只有在缺少这些服务会影响其运行能力的情况下,应用才应请求后台定位服务。” 在以下链接中。

http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/LocationAwarenessPG/CoreLocation/CoreLocation.html

我想做的事是个好主意吗?

谢谢!

4

2 回答 2

0

如果您没有该功能,只要您的应用程序会受到损害,这是一个非常好的主意。如果您按照这些指南提交,Apple 没有理由拒绝您的应用程序。我会确保在应用程序的某处告诉用户您的应用程序将在后台跟踪他们的位置

于 2012-12-26T04:56:37.963 回答
0

For location update in background, there is no need of push notification.

As you have done is fine. Just add one key in plist file that inform the app that, app will work in background and will take user's GPS location.

Now, you have to inform the user that, your app will track the user's GPS location, and because of continuous location tracking, it will affect on devices battery.

You can do this by adding the line in info page of the app. And you can also mentioned in application description which is displaying on app store.

Then apple will not reject your app due to GPS tracking.

Hope it will help to approve your app.

Cheers.

于 2012-12-26T05:06:42.547 回答