我一直在做一些关于CLBeaconRegion的阅读,我已经成功设置了一些iBeacons并让它触发了位置更新,即使应用程序在后台也是如此.
但是,根据我从CLRegion中读取和继承的内容,我理解应该可以在应用程序终止后点击locationManager:didEnterRegion:
我已经设置了我的CLBeaconRegion:
beaconRegion = [[CLBeaconRegion alloc] initWithProximityUUID:[[NSUUID alloc] initWithUUIDString:SERVICE_UUID] major:0 minor:0 identifier:BEACON_ID]; [beaconRegion setNotifyOnEntry:YES]; [beaconRegion setNotifyOnExit:YES]; [beaconRegion setNotifyEntryStateOndisplay:YES];
但我无法从终止触发CLLocationManager的委托.我已离开该区域(通过通知确认),远离灯塔,等待30秒,然后返回信标,但它终止时不触发代表(在后台和前景工作很好) ).
这应该终止吗?我错过了什么吗?任何帮助都会很棒.