我开发了同样用Android开发的应用程序。
我已经在iOS中实现了信标区域监控,如下所示.
#pragma mark - Start/Stop Monitoring
- (void)startMonitoring {
[self clearRegionWatch]; // This function removes the already registered monitored regions
NSArray *arrayOfSavedBeacons = [self getSavedBeacons];
if([arrayOfSavedBeacons count]){
for(Beacons *beaconModel in arrayOfSavedBeacons) {
beaconModel.region.notifyOnEntry = YES;
beaconModel.region.notifyOnExit = YES;
beaconModel.region.notifyEntryStateOnDisplay = NO;
NSLog(@"Monitoring start request: %@", [beaconModel dictionaryRepresentation]);
[locationManager startMonitoringForRegion:beaconModel.region];
[locationManager requestStateForRegion:beaconModel.region];
}
}
else{
UIAlertView* curr1=[[UIAlertView alloc] initWithTitle:@"No Beacons" message:@"No Beacon List Found From Server" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[curr1 show];
}
}
以上是启动监视的代码。
以下是我为位置管理器实例初始化编写的代码。
locationManager = [[CLLocationManager alloc] init];
if([locationManager respondsToSelector:@selector(startMonitoringVisits)]) {
//iOS 8.0 onwards
[locationManager startMonitoringVisits];
}
if([locationManager respondsToSelector:@selector(allowsBackgroundLocationUpdates)]) {
//iOS 9.0 onwards
locationManager.allowsBackgroundLocationUpdates = YES;
}
if([locationManager respondsToSelector:@selector(requestAlwaysAuthorization)]) {
//iOS 8.0 onwards
[locationManager requestAlwaysAuthorization];
}
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
[locationManager setDelegate:self];
[locationManager startUpdatingLocation];
上面的代码将在应用程序启动时初始化位置管理器。
我想收到有关区域进入和退出事件的通知。
我的问题是我的安卓应用程序可以从很远的距离检测到信标条目,而 iOS 应用程序无法检测到从远处进入或退出的区域.
我不知道为什么会出现这种差异?
我观察到的是信标区域监控有时会延迟进入出口通知 2 到 3 分钟.
如果Android可以检测到特定范围内的信标区域,那么为什么iOS应用程序无法检测到这一点?(这是两个应用程序都可以开始检测应用程序的范围形式的显着差异)。
任何建议或建议都会有所帮助。
谢谢。
使用 iOS CoreLocation, 无论信标通告的信号强度如何,都会在首次检测到与区域匹配的信标时进行didEnterRegion
监控回调. 当蓝牙芯片第一次看到广告时,回调应该触发,对于iOS和Android设备,这应该处于类似的范围内。 虽然最大蓝牙检测范围肯定因设备而异,并且可能会受到添加保护套、将手机放在口袋或障碍物的影响,但在典型使用中,它不会有很大差异。
您看到检测延迟的一个更可能的解释是时间,而不是信号强度。 在后台, iOS 将遵从蓝牙芯片硬件检测插槽以快速匹配您的信标区域. 这是有限的资源,因此如果这些资源用尽,iOS 将回退到定期软件扫描进行检测,这最多可能需要 15 分钟。 您可以通过将iOS设备放置在Android首次检测到的同一位置来确认此假设,然后等待它最终是否在该距离进行测试。
加快检测速度的一些提示:
-
卸载所有可能监控iOS设备上信标的应用程序, 因为它们可能会用完有限的硬件加速插槽. (设备上所有应用约 30 个。
-
除非绝对必要,否则不要停止监视并重新启动。 这将使你的应用排在最后,以获得硬件加速检测槽。
-
开始监控时开始测距信标. 这不会影响背景检测时间,但会显著加快前台检测时间。
如果你的应用在你测距时处于后台,则最多可能需要 15 分钟才能获取 Enter 和存在的区域通知。如果您的应用在前台运行,您应该在一秒钟内收到输入的区域通知,并在几秒钟内退出区域通知。
这不是信标特定问题,而是 CoreLocation API 的方式是在 iOS 中实现的.