1

我正在尝试了解崩溃日志。当我尝试执行该CLLocationDistance方法时会发生这种情况distanceFromLocation。为了获得两个位置,我需要进行地理编码,但我需要一个块,这样我就可以拥有这两个实例变量。所以我把它指向一个带参数的方法:

  - (void)geoCodeSetup:(NSArray *)placemarks :(NSError *)error andIdentifier:(NSString *)string {
CLLocation *location1;
CLLocation *location2;
if ([string isEqualToString:@"Origin"]) {
    if (!error) {
        CLPlacemark *place = [placemarks objectAtIndex:0];
        CLLocation *location = place.location;
        location1 = [[CLLocation alloc] initWithLatitude:location.coordinate.latitude longitude:location.coordinate.longitude];

    } else {
        NSString *string = [NSString stringWithFormat:@"%@ - also make sure you have inputted a valid city", [error localizedDescription]];
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:string delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
        [alert show];
    }
}

if ([string isEqualToString:@"Destination"]) {
    if (!error) {
        CLPlacemark *place = [placemarks objectAtIndex:0];
        CLLocation *location = place.location;
       location2 = [[CLLocation alloc] initWithLatitude:location.coordinate.latitude longitude:location.coordinate.longitude];


    } else {
        NSString *string = [NSString stringWithFormat:@"%@ - also make sure you have inputted a valid city", [error localizedDescription]];
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:string delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
        [alert show];
    }
}


CLLocationDistance distanceM = [location1 distanceFromLocation:location2];    
[metreDistance setText:[NSString stringWithFormat:@"%f", distanceM]];

}

- (IBAction)calculateDistance {

[textFieldDestination resignFirstResponder];
NSString *origin = [textFieldOrigin text];
if (origin) {
    CLGeocoder *geoCode = [[CLGeocoder alloc] init];

    [geoCode geocodeAddressString:origin completionHandler: ^(NSArray *placemarks, NSError *error) {
        NSArray *p1 = placemarks;
        NSError *e1 = error;
        [p1 retain];
        [e1 retain];
        [self geoCodeSetup:p1 :e1 andIdentifier:@"Origin"];


    }]; 
}

NSString *destination = [textFieldDestination text];
if (destination) {

    CLGeocoder *geoCode2 = [[CLGeocoder alloc] init];

    [geoCode2 geocodeAddressString:destination completionHandler:^(NSArray *placemarks, NSError *error) {
        NSArray *p2 = placemarks;
        NSError *e2 = error;
        [p2 retain];
        [e2 retain];
        [self geoCodeSetup:p2 :e2 andIdentifier:@"Destination"];




    }]; 
}

它在 distanceFromLocation 部分崩溃/给出EXC_BAD_ACCESS (code =EXC_ARM_DA_ALIGN, address=.....etc....)。我附上了崩溃日志的屏幕截图。

崩溃日志

什么可能导致这种情况,我该如何解决?

4

1 回答 1

2

我假设 location1 或 location2 未设置,因为您确实将其包装到

if ([string isEqualToString:@"Origin"]) {
    if (!error) {

您可以通过将第 2 行和第 3 行链接到:

CLLocation *location1 = nil;
CLLocation *location2 = nil;

也许你还需要换行:

CLLocationDistance distanceM = [location1 distanceFromLocation:location2]; 
// change to
CLLocationDistance distanceM;
if(location1 && location2) {
  distanceM = [location1 distanceFromLocation:location2];
}

我认为您distanceFromLocation:至少使用一个 NULL 参数或对象运行。

于 2012-04-13T10:06:14.780 回答