我正在尝试将自定义注释传递给 NSMutableArra 以使用它来填充表格视图。代码是:
在 .h 我定义了一个 NSMutableArray *mapViewAnnotations;
然后在.m
- (void)plotBarPosition:(NSString *)datos{
/*
code that extract data froma a json string
*/
MyLocation *nota =[[MyLocation alloc] initWithName:barNamePlusDistance coordinate:coordinate horario:horario oferta:offerta more:info];
NSLog(@"nota :%@",nota);
[_mapView addAnnotation:nota]; //annotation are plot on the map
[mapViewAnnotations addObject:nota];
NSLog(@"mapViewAnnotations:%@",mapViewAnnotations); //NSlog return null
}
mapViewAnnotations 结果为空。Perarps 无法将 MyLocation 对象复制到 mutablearray 中?
提前致谢。