我正在尝试制作应用程序,范围为 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];
应用程序会找到我周围的所有信标。
我应该只调用第二种方法还是我不正确?
你有什么建议吗?
最可能的解释是您没有等待足够长的时间来接到您的代表的电话。当您在 NOT 范围内时,最多需要 15 分钟才能获得对以下委托(delegate)方法的回调。测距时,只需 1 秒。
- (void)locationManagerCLLocationManager *)manager didDetermineStateCLRegionState)state
- (void)locationManagerCLLocationManager *)manager didEnterRegionCLRegion *)region
如果您等待 15 分钟,我怀疑您会按预期收到回调。测距时速度如此之快的原因是,当启用测距以查找 iBeacons 时,iOS 会持续进行蓝牙扫描。当您不进行测距时,它会减慢这些扫描速度以节省电池。在下面的博客文章中查看更多信息:
http://developer.radiusnetworks.com/2014/03/12/ios7-1-background-detection-times.html
关于ios - CLLocationManager + 监控 CLBeaconRegion,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22490921/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |