• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - CLLocationManager + 监控 CLBeaconRegion

[复制链接]
菜鸟教程小白 发表于 2022-12-12 20:36:47 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试制作应用程序,范围为 CLBeaconRegion。

我观看了来自 WWDC 的视频,主持人说,我应该调用 startMonitoringForRegion,然后用户在区域内,startRangingBeaconsInRegion。我试过了。

if (!_locationManager) {
    _locationManager = [[CLLocationManager alloc] init];
    _locationManager.delegate = self;
    _locationManager.desiredAccuracy = kCLLocationAccuracyBest;
}

CLBeaconRegion *targetRegion = [[CLBeaconRegion alloc] initWithProximityUUID:[[NSUUID alloc] initWithUUIDString:UUIDString] identifier:identifier];
targetRegion.notifyEntryStateOnDisplay = YES;
targetRegion.notifyOnEntry = YES;
targetRegion.notifyOnExit = YES;

[_locationManager startMonitoringForRegion:targetRegion];
[_locationManager startUpdatingLocation];

但它并没有发送任何内容来委派。信标正在工作。

如果我只是打电话

[_locationManager startRangingBeaconsInRegion:region];

应用程序会找到我周围的所有信标。

我应该只调用第二种方法还是我不正确?

你有什么建议吗?



Best Answer-推荐答案


最可能的解释是您没有等待足够长的时间来接到您的代表的电话。当您在 NOT 范围内时,最多需要 15 分钟才能获得对以下委托(delegate)方法的回调。测距时,只需 1 秒。

- (void)locationManagerCLLocationManager *)manager didDetermineStateCLRegionState)state 
- (void)locationManagerCLLocationManager *)manager didEnterRegionCLRegion *)region

如果您等待 15 分钟,我怀疑您会按预期收到回调。测距时速度如此之快的原因是,当启用测距以查找 iBeacons 时,iOS 会持续进行蓝牙扫描。当您不进行测距时,它会减慢这些扫描速度以节省电池。在下面的博客文章中查看更多信息:

http://developer.radiusnetworks.com/2013/11/13/ibeacon-monitoring-in-the-background-and-foreground.html

http://developer.radiusnetworks.com/2014/03/12/ios7-1-background-detection-times.html

关于ios - CLLocationManager + 监控 CLBeaconRegion,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22490921/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap