我正在尝试了解崩溃日志。当我尝试执行该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....)
。我附上了崩溃日志的屏幕截图。
什么可能导致这种情况,我该如何解决?