您好,匿名用户
随意问技术百科期待您的加入

windows中如何检测自己的程序被下了硬件断点

+1 投票

按照文档上说的,有两种地理位置获取办法。一种是用standard方式,一种是Significant-Change,如有要在后台执行,那么按照文档说:

Significant-Change: If you leave this service running and your app is subsequently suspended or terminated, the service automatically wakes up your app when new location data arrives.

If your app needs location updates delivered whether the app is in the foreground or background, there are multiple options for doing so. The preferred option is to use the significant location change service to wake your app at appropriate times to handle new events. However, if your app needs to use the standard location service, you can declare your app as needing background location services.

也就是说我用significant-change的方式可以一直在后台获取地理位置信息,或是标记为needing background location services后用standard方式在后台获取地理位置信息。

但是我测试了很多次,一般是跑10-20分钟就不再获取地理位置信息了。。是否有人做过这一块,求指导,谢谢!

用户头像 提问 2013年 1月21日 @ Alistar 上等兵 (326 威望)
分享到:

1个回答

+1 投票
 
最佳答案
 if ([CLLocationManager significantLocationChangeMonitoringAvailable])
  {
     [[[OTGPSHelper instance] localtionManager] startMonitoringSignificantLocationChanges];
 }

我的代码里用这个跑多久都没问题

用户头像 回复 2013年 1月21日 @ Lancer 上等兵 (183 威望)
选中 2013年 1月21日 @Alistar
提一个问题:

相关问题

0 投票
1 回复 31 阅读
0 投票
1 回复 34 阅读
0 投票
0 回复 25 阅读
+1 投票
2 回复 462 阅读
用户头像 提问 2012年 12月1日 @ Ahri 上等兵 (292 威望)
0 投票
1 回复 60 阅读
用户头像 提问 2013年 9月26日 @ Anivia 上等兵 (276 威望)

欢迎来到随意问技术百科, 这是一个面向专业开发者的IT问答网站,提供途径助开发者查找IT技术方案,解决程序bug和网站运维难题等。
温馨提示:本网站禁止用户发布与IT技术无关的、粗浅的、毫无意义的或者违法国家法规的等不合理内容,谢谢支持。

欢迎访问随意问技术百科,为了给您提供更好的服务,请及时反馈您的意见。
...