如何在iPhone中使用LLGeofence框架?

发布于 2024-12-17 08:45:51 字数 1437 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反差帅 2024-12-24 08:45:51

有一个 CLLocationManager 类,它允许您执行有关位置的各种操作。

它有以下方法:

+ (BOOL)regionMonitoringAvailable
+ (BOOL)regionMonitoringEnabled

- (void)startMonitoringForRegion:(CLRegion *)region
- (void)startMonitoringForRegion:(CLRegion *)region desiredAccuracy:(CLLocationAccuracy)accuracy
- (void)stopMonitoringForRegion:(CLRegion *)region

设置区域监控后,您可以在 CLLocationManagerDelgate 中收到以下回调:

- (void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLRegion *)region
- (void)locationManager:(CLLocationManager *)manager didExitRegion:(CLRegion *)region

这些方法的使用方式与 CoreLocation 中其他位置方法的使用方式几乎完全相同。 Apple 的官方文档提供了一些如何详细使用它们的信息: http://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/LocationAwarenessPG/CoreLocation/CoreLocation.html#//apple_ref/doc/uid/TP40009497-CH2-SW13

There's a CLLocationManager class, that allows you various stuff about location.

It has following methods:

+ (BOOL)regionMonitoringAvailable
+ (BOOL)regionMonitoringEnabled

- (void)startMonitoringForRegion:(CLRegion *)region
- (void)startMonitoringForRegion:(CLRegion *)region desiredAccuracy:(CLLocationAccuracy)accuracy
- (void)stopMonitoringForRegion:(CLRegion *)region

after you setup region monitoring, you can receive the following callback in your CLLocationManagerDelgate:

- (void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLRegion *)region
- (void)locationManager:(CLLocationManager *)manager didExitRegion:(CLRegion *)region

These methods are used almost the same exact way as the rest location methods are used in CoreLocation. The official docs from Apple have some info how to use them in details: http://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/LocationAwarenessPG/CoreLocation/CoreLocation.html#//apple_ref/doc/uid/TP40009497-CH2-SW13

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文