3

我的应用程序在模拟器上完美运行,一切正常。但现在我想把它放在我的 iPhone 上,我发现 GPS 功能不起作用。

这是我的代码。

    [super viewDidLoad];

    //eigener Standort
    locationManager = [[CLLocationManager alloc] init];
    locationManager.delegate = self;
    locationManager.distanceFilter = kCLDistanceFilterNone; // whenever we move
    locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters; // 100 m
    [locationManager startUpdatingLocation];
}

- (void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
           fromLocation:(CLLocation *)oldLocation
{
    eigLat = newLocation.coordinate.latitude;
    eigLon = newLocation.coordinate.longitude;

    eigLatString = [NSString stringWithFormat:@"%f", eigLat];
    eigLonString = [NSString stringWithFormat:@"%f", eigLon];
}

直到现在一切都很好。如果我使用 NSLog,我会得到正确的坐标。

但后来我想在这里使用我的坐标:

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;

    news = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:NULL];

    for (x=0; x<[news count]; x++)
    {
        //Berechnung der Entfernung
        erdradius = 6371.1;

        //Koordinaten von Datenbank in String schreiben
        NSString *latitude = [[news objectAtIndex:x] objectForKey:@"Latitude"];
        NSString *longitude = [[news objectAtIndex:x] objectForKey:@"Longitude"];

        entfernung = 0;
        double lat1 = eigLat;                   //eigener Standort Latitude
        double long1 = eigLon;                  //eigener Standort Longitude
        double lat2 = [latitude doubleValue];   //Standort Heurigen Latitude
        double long2 = [longitude doubleValue]; //Standort Heurigen Longitude

在那里,lat1 和 lat2 每次都得到 0。但前提是我在 iPhone 上运行应用程序。在模拟器上它工作正常。

有人知道为什么会这样吗?

4

1 回答 1

1

问题是您还没有在现实世界中获得 GPS 位置,因此您的方法在被connectionDidFinishLoading()调用之前didUpdateToLocation()被调用。
因此 eighValue 仍为 0。

首先检查有效的纬度和经度:
如果两者都是 0,那么您没有获得位置。

我认为您必须更改程序代码的逻辑,
您必须要么

1)等到你有一个位置,然后开始
连接,以便在你有 GPS 坐标后调用 connectionDidFinishLoading。

或者2)你存储网络连接的坐标结果,并在你得到你的第一个坐标时计算

于 2013-03-19T21:59:39.803 回答