我正在监控3个地区。 但是确实进入了区域和didexitregion方法被重复触发,即使app在该区域内。只有当应用程序进入或退出3个区域中的任何一个时,我才需要通知。这是因为我正在重复测试应用程序
这是我的代码:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
STCloudManager setupAppID:@"valid is" andAppToken:@"valid token"];
UILocalNotification *locationNotification = [launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
if (locationNotification) {
// Set icon badge number to zero
application.applicationIconBadgeNumber = 0;
}
self.beaconManager1= [[ESTBeaconManager alloc]init];
self.beaconManager1.delegate = self;
self.beaconManager1.avoidUnknownStateBeacons=YES;
self.beaconManager1.preventUnknownUpdateCount=YES;
NSSet *set=[self.beaconManager1 monitoredRegions];
self.region_desk=[[CLBeaconRegion alloc]
initWithProximityUUID:ESTIMOTE_PROXIMITY_UUID major:36798 minor:29499
identifier:@"Appdelegate_Desk_Beacon_Region"];
self.region_door1=[[CLBeaconRegion alloc]
initWithProximityUUID:ESTIMOTE_PROXIMITY_UUID major:29666 minor:63757
identifier:@"Appdelegate_Door_Beacon1_Region"];
self.region_door2=[[CLBeaconRegion alloc]
initWithProximityUUID:ESTIMOTE_PROXIMITY_UUID major:64157 minor:33188
identifier:@"Appdelegate_Door_Beacon2_Region"];
[self.beaconManager1 requestAlwaysAuthorization];
//already monitoring
if ([set count]<3) {
if (![set containsObject:self.region_desk]) {
[self.beaconManager1 startMonitoringForRegion: self.region_desk];
}
//
if (![set containsObject:self.region_door1]) {
[self.beaconManager1 startMonitoringForRegion: self.region_door1];
}
if (![set containsObject:self.region_door2]) {
[self.beaconManager1 startMonitoringForRegion: self.region_door2];
}
}
return YES;
}
答案 0 :(得分:1)
这是由于先前安装的应用程序的区域实例。
重启设备后,此问题将消失。
答案 1 :(得分:1)
您应该重启设备。
在iOS 20中,区域实例由OS存储。我认为它不断将区域实例放入该OS区域数组中。你应该用一些随机区域填充数组,否则你应该在每次测试后重新启动你的设备。