来自didEnterRegion的多个本地通知故障:

时间:2015-08-03 00:31:41

标签: ios localnotification region-monitoring

我目前正在监控核心数据支持的多个地点。 换句话说,我已经建立了一个for循环,循环遍历核心数据中的所有存储实体,并为所有实体创建一个受监控区域。

这里的问题是for循环在进入其中一个区域时会触发多个本地通知。通知的数量几乎直接对应于受监控区域的数量。所以我相信这可能是造成这个错误的原因,但我并不是百分之百确定。

我注意到这似乎是区域监控的一个常见问题,但我还没有找到一个包含for循环的示例。

如何在调用didEnterRegion时停止触发多个通知?

在viewDidLoad中调用以下方法。 [DataSource sharedInstance] .fetchedResultItems是一个使用fetchedObjects从提取的请求填充的数组。

-(void)startMonitoringRegions{
    if ([self.locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)]) {
        [self.locationManager requestWhenInUseAuthorization];

        CLAuthorizationStatus authorizationStatus = [CLLocationManager authorizationStatus];
        if (authorizationStatus == kCLAuthorizationStatusAuthorizedAlways ||
            authorizationStatus == kCLAuthorizationStatusAuthorizedWhenInUse) {
            self.locationManager.distanceFilter = 10;
            [self.locationManager startUpdatingLocation];

            for (POI *items in [DataSource sharedInstance].fetchResultItems){

                NSString *poiName = items.name;
                NSNumber *poiLatitude = items.yCoordinate;
                NSLog(@"value: %@", poiLatitude);
                NSNumber *poiLongitude = items.xCoordinate;
                NSLog(@"value: %@", poiLongitude);

                NSString *identifier = poiName;
                CLLocationDegrees latitude = [poiLatitude floatValue];
                CLLocationDegrees longitude = [poiLongitude floatValue];
                CLLocationCoordinate2D centerCoordinate = CLLocationCoordinate2DMake(latitude, longitude);
                self.regionRadius = 10;

                self.region =  [[CLCircularRegion alloc] initWithCenter:centerCoordinate radius:400 identifier:identifier];
                [self.locationManager startMonitoringForRegion:self.region];
                NSLog(@"region: %@", self.region);
                NSLog(@"monitored regions %@", self.locationManager.monitoredRegions);

            }
        }
    }
}

这是didEnterRegion方法

- (void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLRegion *)region{
    NSLog(@"entered region!!");
    UILocalNotification *localNotification = [[UILocalNotification alloc] init];

    if (localNotification) {
        localNotification.fireDate = nil;
        localNotification.alertBody = [NSString stringWithFormat:@"You are near %@", self.region.identifier];
        localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:10];
        localNotification.timeZone = [NSTimeZone defaultTimeZone];
    }
    [[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
//    [[UIApplication sharedApplication]presentLocalNotificationNow:localNotification];
}

2 个答案:

答案 0 :(得分:2)

区域充当共享资源。当您进入任何区域时,呼叫将被转发给所有位置管理员。我认为你在某处创建了多个位置管理器对象。这实际上导致多次调用didEnterRegion。调用didEnterRegion的次数取决于您注册的LocationManager的数量。您应该在AppDelegate中使用此方法编写代码

  • (BOOL)应用程序:(UIApplication *)应用程序didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

//将代码放在这里

}

答案 1 :(得分:0)

只是一个故障排除提示。您可以使用以下等效的Obj-C来查看应用程序当前正在监视哪些区域。或许查看标识符可以解释这个问题。

for region in locationManager.monitoredRegions {
            debugPrint(region.identifier)
}

为了干净利落,您可以删除所有区域:

for region in locationManager.monitoredRegions {
            locationManager.stopMonitoringForRegion(region)
}