ios - 信标管理器 didenter didexit 区域方法被重复调用
<p><p>我正在监控 3 个区域。
但是即使应用程序在该区域内,也确实会重复触发进入区域和 didexitregion 方法。仅当应用程序进入或退出 3 个区域中的任何一个时,我才需要通知。发生这种情况是因为我正在反复测试应用程序吗</p>
<p>这是我的代码:</p>
<pre><code>- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
STCloudManager setupAppID:@"valid is" andAppToken:@"valid token"];
UILocalNotification *locationNotification = ;
if (locationNotification) {
// Set icon badge number to zero
application.applicationIconBadgeNumber = 0;
}
self.beaconManager1= [init];
self.beaconManager1.delegate = self;
self.beaconManager1.avoidUnknownStateBeacons=YES;
self.beaconManager1.preventUnknownUpdateCount=YES;
NSSet *set=;
self.region_desk=[
initWithProximityUUID:ESTIMOTE_PROXIMITY_UUID major:36798 minor:29499
identifier:@"Appdelegate_Desk_Beacon_Region"];
self.region_door1=[
initWithProximityUUID:ESTIMOTE_PROXIMITY_UUID major:29666 minor:63757
identifier:@"Appdelegate_Door_Beacon1_Region"];
self.region_door2=[
initWithProximityUUID:ESTIMOTE_PROXIMITY_UUID major:64157 minor:33188
identifier:@"Appdelegate_Door_Beacon2_Region"];
;
//already monitoring
if (<3) {
if (!) {
;
}
//
if (!) {
;
}
if (!) {
;
}
}
return YES;
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>你应该重启你的设备。</p>
<p>在 iOS 20 中,区域实例由操作系统存储。我认为它不断地将区域实例放入该操作系统区域数组中。你应该用一些随机区域填充数组,或者你应该在每次测试后重新启动你的设备。</p></p>
<p style="font-size: 20px;">关于ios - 信标管理器 didenter didexit 区域方法被重复调用,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/31162054/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/31162054/
</a>
</p>
页:
[1]