我没有收到信标区域的区域进入和退出事件。这就是我将信标添加到受监控区域的方式:
NSUUID *uuid = [[NSUUID alloc] initWithUUIDString: beacon.UUID];
CLBeaconRegion *region = [[CLBeaconRegion alloc] initWithProximityUUID: uuid major: (CLBeaconMajorValue) beacon.major minor: (CLBeaconMajorValue) beacon.minor identifier: @"SOME IDENTIFIER"];
[_locationManager startMonitoringForRegion: region];
和事件:
- (void) locationManager: (CLLocationManager *) manager didEnterRegion: (CLRegion *) region
{
NSLog(@"entered beacon region");
}
- (void) locationManager: (CLLocationManager *) manager didExitRegion: (CLRegion *) region
{
NSLog(@"exited beacon region");
}
此信标区域不会调用这些委托事件。
我已经在地理区域进行了测试,它可以工作,但它不适用于我的信标。此外,我已经在同一个信标上测试了测距,该信标有效。
信标监控是否存在任何已知问题?
非常感谢