9

如果应用程序正在运行并且 CLLocationManagerDelegate 类是前台(即可见),那么 didEnterRegions 会触发,我会同时获得 NSLog 和 AlertView。但是,当应用程序在后台时,或者本质上,如果屏幕显示除委托类之外的任何内容,我什么也得不到。

我在 plist 中的“必需的后台模式”下设置了“应用程序注册以进行位置更新”,尽管我不确定这是否有必要。

这是我认为的相关代码,尽管我可能是错的(并且很乐意添加更多)。我应该注意 viewDidLoad 中的所有内容都包含在 if 中,它检查区域监控是否可用并启用。

- (void)viewDidLoad
{
    NSLog(@"MapViewController - viewDidLoad");
    self.locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters;
    self.locationManager.distanceFilter = kCLLocationAccuracyNearestTenMeters;    
    self.locationManager.delegate = self;
    [self.locationManager startMonitoringSignificantLocationChanges];
}

- (void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLRegion *)region
{
    NSLog(@"MapViewController - didEnterRegion");
    NSLog(@"MVC - didEnterRegion - region.radius = %f", region.radius);
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"entered region..." message:@"You have Entered the Location." delegate:nil cancelButtonTitle:@"OK"  otherButtonTitles: nil];
    alert.tag = 2;
    [alert show];
}

这是我在 AppDelegate.m 中获得被监控区域列表的地方:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

// other code

NSLog(@"LISTING ALL REGIONS MONITORED");
    NSArray *regions = [self.locationManager.monitoredRegions allObjects];
    if (!regions) {
        NSLog(@"no regions found");
    } else {
        NSLog(@"got %d monitored regions", [regions count]);
        for (int i = 0; i < [regions count]; i++) {
            CLRegion *region = [regions objectAtIndex:i];
            NSLog(@"region %d's identifier = %@", i, region.identifier);
            NSLog(@"region: radius: %@", region.radius);
        }
    }

// other code
}

我调用 startMonitoringForRegion 两次,这里是主要的地方:

- (void)doneButtonTapped {
    NSLog(@"doneButtonTapped");

    if (self.locationIdentifier) {
        if ([CLLocationManager regionMonitoringEnabled] && [CLLocationManager regionMonitoringAvailable]) {

            // core data setup
            NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
            NSEntityDescription *entityDescription = [NSEntityDescription entityForName:@"LocationReminder" inManagedObjectContext:self.managedObjectContext];
            fetchRequest.entity = entityDescription;
            NSPredicate *predicate = [NSPredicate predicateWithFormat:@"locationIdentifier == %@", self.locationIdentifier];
            fetchRequest.predicate = predicate;
            NSError *error;
            NSArray *results = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error];
            if (results) {

                // get the LocationReminder
                LocationReminder *retrievedReminder = [results objectAtIndex:0];
                retrievedReminder.audioURI = [[[self.audioPlayers objectAtIndex:self.selectedCell] url] absoluteString];
                retrievedReminder.userRecording = nil;

                // start monitoring it's region
                NSArray *coordinateArray = [retrievedReminder.locationIdentifier componentsSeparatedByString:@", "];
                CLLocationCoordinate2D coordinate = {[[coordinateArray objectAtIndex:0] doubleValue], [[coordinateArray objectAtIndex:1] doubleValue]};
                CLRegion *newRegion = [[CLRegion alloc] initCircularRegionWithCenter:coordinate radius:250.0 identifier:retrievedReminder.locationIdentifier];
                NSLog(@"about to monitor region with radius: %f", newRegion.radius);
                [self.locationManager startMonitoringForRegion:newRegion desiredAccuracy:kCLLocationAccuracyBest];

                // save the LocationReminder
                if (![self.managedObjectContext save:&error]) {
                    NSLog(@"hmm.  no managed object context.  must be something space-time going on");
                } else {
                    NSLog(@"saved locationReminder, locationIdentifier = %@", retrievedReminder.locationIdentifier);
                }
            } else {
                NSLog(@"ERROR: no LocationReminder retreived for predicate: %@", predicate);
            }
        }

        // get the mapview controller off of the navigation stack
        for (UIViewController *viewController in self.navigationController.viewControllers) {
            if ([viewController isKindOfClass:[MapViewController class]]) { 
                MapViewController *mapVC = (MapViewController *)viewController;
                mapVC.audioURI = [[[self.audioPlayers objectAtIndex:self.selectedCell] url] absoluteString];
                [self.navigationController popToViewController:mapVC animated:YES];
            }
        }
}

因为我觉得它可能很重要,所以这里是 locationManager 的 getter:

- (CLLocationManager *)locationManager {
    NSLog(@"MapViewController - locationManager");
    if (_locationManager) {
        return _locationManager;
    } else {
        _locationManager = [[CLLocationManager alloc] init];
        return _locationManager;
    }
}

更新 1:通过 Apple 论坛(我在其中交叉发布)有人提到 AlertView 只会显示在前台。NSLog 仍然没有触发。我假设这应该有效。

4

4 回答 4

2

我的一个朋友写了一篇关于使用地理围栏的很好的教程,这可能有助于解决您遇到的一些问题。

开始使用地理围栏

网上和这里有很多例子。从小处着手,一路向上。一旦你开始得到你的回调,你就可以开始将事情扩展到你的其他视图控制器。

更新

正如评论中解释的那样,创建一个单例类来控制您的位置管理器和委托方法的好处。通过使用单例,您可以防止多次调用您的委托方法。您可以通过仔细编码来防止这种情况,但使用单例可以为您做到这一点。这也是一个很好的类,可以处理委托方法需要完成的所有工作。

于 2012-09-12T13:06:17.383 回答
2

你做错的事情:

  1. 后台模式 - 应用程序注册位置更新。这不是必需的。当您想要收集有关位置等重大变化的信息时,这是需要的。因此,请转到 Targets > Your app > Capabilites ,然后在背景模式下选择所需的选项。这将自动为您更新 plist。现在,禁用它。
  2. 您正在尝试在用户进入区域时创建警报。虽然这在应用程序运行时工作,但当您的应用程序处于后台时,警报是没有用的。- 而是触发本地通知或 api 调用。

例如。通知:

    -(void)triggerLocalNotification:(CLRegion *)region{
    UILocalNotification *notification = [[UILocalNotification alloc]init];
    [notification setAlertBody:[NSString stringWithFormat:@"Welcome to %@", [region identifier]]];
    [notification setRepeatInterval:0];
    [notification setFireDate:[NSDate dateWithTimeIntervalSinceNow:2]];
    [notification setTimeZone:[NSTimeZone  defaultTimeZone]];
    [[UIApplication sharedApplication]scheduleLocalNotification:notification];
    NSLog(@"notification triggered with notification %@", notification);
}
于 2015-03-11T06:40:28.173 回答
0

我想你需要去你的 app.plist

并添加所需的背景模式:添加 itme 应用程序寄存器以进行位置更新

和 1。如果您的应用程序在后台,您仍然会看到顶部的箭头

2、如果app被杀了,你仍然可以在顶部看到一个空心箭头,ios会为你监控区域,但仅限于20个区域。

于 2013-09-03T05:40:28.677 回答
0

您可以在 didEnterRegion 时发布本地通知。

即使您在后台,这也会显示类似警报的弹出窗口。

你可以做一个简单的测试:

1)在您的应用程序委托的 applicationDidEnterBackground 中创建一个本地通知对象,其中包含任何随机消息,并告诉本地通知立即触发。

2)按主页按钮,当您最小化应用程序时,您应该会看到一个弹出窗口。

于 2012-09-12T04:35:08.550 回答