1

我正在使用在 iPhone 4 上运行的代码:

- (id)init
{
    self = [super initWithNibName:@"OfflineView" bundle:nil]; // ok, not perfect but for test, that works fine
    if (self) {
        self.locationMgr = [[CLLocationManager alloc] init];
        self.locationMgr.desiredAccuracy = kCLLocationAccuracyThreeKilometers;
        self.locationMgr.distanceFilter = kCLDistanceFilterNone;
        self.locationMgr.headingFilter = kCLHeadingFilterNone;

        self.locationMgr.delegate = self;
    }
    return self;
}

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
    // do things
}

// triggered when showing the view, first call here after the init
- (void) start
{
    self.view.hidden = NO;
    [self.locationMgr startUpdatingLocation];
    [self.locationMgr startUpdatingHeading];
}

但未触发委托方法。
它仅在手机移动时触发。

如何在视图出现时使用有效的用户位置启动我的进程,而不要求我的用户在能够做某事之前摇动手机并跑 100m?

4

2 回答 2

2

您可以通过自己踢一次委托方法来“启动”它。

- (void) start
{
    self.view.hidden = NO;
    [self.locationMgr startUpdatingLocation];
    [self.locationMgr startUpdatingHeading];
    [self locationManager: self.locationMgr didUpdateToLocation: [self.locationMgr currentLocation] fromLocation: nil];
}
于 2011-08-30T21:54:58.507 回答
0

你在哪里调用开始:?你应该在不动的情况下得到第一个修复。这是一个异步回调,因此可能需要一些时间。

理想情况下,您应该在 init/viewDidLoad 中调用 startUpdateLocation,然后在 locationUpdate 中读取它:

- (void)locationUpdate:(CLLocation *)location {

 //   Read location

}
于 2011-08-30T21:58:41.567 回答