等待准确的didUpdateToLocation

时间:2013-08-04 03:11:55

标签: iphone ios objective-c cllocationmanager

我正在尝试为我的用户找到准确的纬度/经度坐标。我参考了文档并了解了LocateMe示例项目。我正在尝试编辑代码,以便弹出警报,让用户知道位置信息是否准确。

我有下面的代码,但警告总是说用户的位置信息不准确(“位置不好”)。有谁知道我做错了什么?

我刚刚意识到Apple的示例代码包含以下行:[setupInfo setObject:[NSNumber numberWithDouble:kCLLocationAccuracyHundredMeters] forKey:kSetupInfoKeyAccuracy];

如何编辑下面的代码以等待kCLLocationAccuracyNearestTenMeters。如果可能的话,我宁愿不必引用另一个视图控制器,但能够直接在方法中包含它。

任何帮助都会很精彩。谢谢!

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation 
*)newLocation fromLocation:(CLLocation *)oldLocation {

    //CAN I PUT THE DESIRED ACCURACY HERE?
    locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters; // 100 m

    [locationMeasurements addObject:newLocation];

    NSTimeInterval locationAge = -[newLocation.timestamp timeIntervalSinceNow];
    if (locationAge > 5.0) return;

    if (newLocation.horizontalAccuracy < 0) return;

    if (bestEffortAtLocation == nil || bestEffortAtLocation.horizontalAccuracy > 
    newLocation.horizontalAccuracy) {

        self.bestEffortAtLocation = newLocation;

        if (newLocation.horizontalAccuracy <= locationManager.desiredAccuracy) {

            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Location Good" 
            message:@"OK" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, 
            nil];
            [alert show];
            return;      
        }
        else {
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Location Bad" 
            message:@"OK" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, 
            nil];
            [alert show];
            return;
        }
    }
}

1 个答案:

答案 0 :(得分:1)

将其置于委托回调中为时已晚,因为在使用默认的desiredAccuracy后回调已经返回结果。

您可以将设置放在init方法中,然后在位置管理器上调用start。

// set this before starting the calculations.
self.locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters; 
[self.locationManager startUpdatingLocation];

我唯一发现的问题是它在UX流程中的位置,因为它会弹出警报,如果从UX角度在错误的时间完成,可能会导致用户禁用此功能。如果应用程序使用位置服务是基础,那么它并不好。 :)

希望这有帮助。