1

NSMutableArray当我尝试使用带有该信息的注释时,我有一个带有地图坐标的注释,我在注释行上收到此错误。坐标,它在 IOS 5 和 6 上工作:

-[__NSCFArray objectForKeyedSubscript:]:无法识别的选择器发送到实例

我有这个代码:

 NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"URL"]];

NSError *error;
NSArray *array = [NSJSONSerialization JSONObjectWithData:data
                                                 options:0
                                                   error:&error];


NSString *value = [array valueForKey:@"cortesMap"];
NSMutableArray *arr = [[NSMutableArray alloc] init];
[arr addObject:value];
if (error)
{
    NSLog(@"%s: error=%@", __FUNCTION__, error);
    return;
}

for (NSDictionary *dictionary in arr)
{
    MKPointAnnotation *annotation = [[MKPointAnnotation alloc] init];
    annotation.coordinate = CLLocationCoordinate2DMake([dictionary[@"latitude"] doubleValue], [dictionary[@"longitude"] doubleValue]);
    annotation.title = dictionary[@"type"];
    annotation.subtitle = dictionary[@"description"];
    [self.mapView addAnnotation:annotation];

}

这是viewForAnnotation

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
    MKAnnotationView *annotationView= nil;
    if (![annotation isKindOfClass:[MKUserLocation class]])
    {
        static NSString *annotationViewId = @"annotationViewId";
        annotationView = (MKAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:annotationViewId];
        if (annotationView == nil)
        {
            annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:annotationViewId];

            annotationView.canShowCallout = YES;
            annotationView.image = [UIImage imageNamed:@"pin.png"]
        }
        else
        {
            annotationView.annotation = annotation;
        }
    }
    return annotationView;
}
4

1 回答 1

0

您的错误告诉您您正在尝试在不是字典但实际上是数组的东西上使用字典下标语法dictionary[key](当您使用该语法时,它会调用该方法)。objectForKeyedSubscript你应该做两件事:

  1. 首先,准确确认是哪一行代码导致了问题。我假设,根据您选择与我们共享的代码,您怀疑它来自for循环中的代码,您在其中检索coordinate,title等。

    但是您确实应该确认此代码导致了问题(而不是您的代码中的其他内容)。您可以使用异常断点或单步执行此例程来执行此操作。

    您应该检查(在调试器中或通过插入NSLog语句)dictionary对象的内容。您的错误表明它实际上是一个数组,而不是字典。

  2. 一旦您确认是哪一行代码导致了问题,您就需要退后一步并确定对象点如何以数组而不是字典的形式结束。它可能是(a)如何调用此方法(例如传递了错误的参数);或 (b) 原始字典数组是如何创建的。

于 2013-10-05T02:33:14.950 回答