2

我目前正在尝试在CLLocationManager委托调用中实现超时功能。这是代码:

- (void)checkInAt:(UALocation *)location timeout:(NSTimeInterval)timeout {
    NSDate *tickDate = [NSDate dateWithTimeIntervalSinceNow:timeout];
    self.locationManager = [[CLLocationManager alloc] init];

    self.timeout = [[NSTimer alloc] initWithFireDate:tickDate interval:0 target:self selector:@selector(timedOut:) userInfo:nil repeats:NO];
    [self.locationManager startUpdatingLocation];
}

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
    @synchronized (self.timeout) {
        // Todo what if the timer fires right now?
        // Is it even feasible? On what thread is CLLocationManager operating?
        if (self.timeout.isValid) {
            [self.timeout invalidate];
        }
        else {
            // Timed out
            return;
        }
    }

    [manager stopUpdatingLocation];
    // Do the actual check in
}

- (void)timedOut:(NSTimer *)timer {
    @synchronized (timer) {
        if (!timer.isValid) {
            return;
        }
    }
}

如果您阅读了代码,您可能已经偶然发现了我的问题。

  1. 有没有更好的方法(= 已经存在CLLocationManager)来实现这样的超时?
  2. CLLocationManager它的委托的调用方法在哪个线程上?
  3. 如果它不是主线程,我可能会遇到评论突出显示它的问题。我该如何规避呢?
4

1 回答 1

3

您可以简单地在方法中添加断点,在 xcode 的左侧您将看到哪个线程是。

第一个线程是主线程

在此处输入图像描述

于 2013-06-10T11:24:10.247 回答