来自mapkit中NSMutableArray的多个注释

时间:2012-05-14 16:52:26

标签: ios ipad mkannotation cllocation mapkit

我有一个mutablearray,它是从ios中的sqlite db填充的。我已经获得了正确加载和查看的注释。我的问题是如何编写一个循环来添加带有数组大小的注释。我尝试了以下代码并获取并显示数组中的最后一个条目

NSMutableArray *annotations=[[NSMutableArray alloc] init];
CLLocationCoordinate2D theCoordinate5;
MyAnnotation* myAnnotation5=[[MyAnnotation alloc] init];
for (int i = 0; i < _getDBInfo.count; i++) {

    dbInfo *entity = [_getDBInfo objectAtIndex:i];

    NSNumber *numlat=[[NSNumber alloc] initWithDouble:[entity.Latitude doubleValue]];
    NSNumber *numlon=[[NSNumber alloc] initWithDouble:[entity.Longitude doubleValue]];
    NSLog(@"%d",[_getDBInfo count]);
    la=[numlat doubleValue];
    lo=[numlon doubleValue];
    theCoordinate5.latitude=la;
    theCoordinate5.longitude=lo;

    myAnnotation5.coordinate=theCoordinate5;
    myAnnotation5.title=[NSString stringWithFormat:@"%@"entity.EntityNo];
    myAnnotation5.subtitle=[NSString stringWithFormat:@"%@",entity.EntityName]; 
    [mapView addAnnotation:myAnnotation5];
    [annotations addObject:myAnnotation5];
}

我想我的问题是如何基于数组中的计数创建并添加到我的视图注释对象?

非常感谢任何帮助。

我是iOS和编程的新手,所以请保持温和。

2 个答案:

答案 0 :(得分:3)

您只有一个myAnnotation5个对象。当您设置coordinatetitle等时,您正在为该实例设置该实例,您恰好已多次添加到annotations。因此,annotations中的每个条目都将包含您设置的最后一组属性 - 因为annotations中的每个条目实际上都是相同的对象。

要解决这个问题,你需要在循环的每次迭代中重新创建myAnnotation5个对象,即

for (int i = 0; i < _getDBInfo.count; i++) {
    MyAnnotation* myAnnotation5=[[MyAnnotation alloc] init];
    ...
    myAnnotation5.coordinate=theCoordinate5;
    myAnnotation5.title=[NSString stringWithFormat:@"%@", entity.EntityNo];
    myAnnotation5.subtitle=[NSString stringWithFormat:@"%@", entity.EntityName];
    ...
    [mapView addAnnotation:myAnnotation5];
}

两个旁白:

  1. 我希望你使用ARC构建,否则你会左右泄漏内存。
  2. 由于MKMapView具有-annotations属性,因此您可能没有理由保留自己的annotations数组 - 只需保留对mapView的引用。

答案 1 :(得分:1)

移动此行:

MyAnnotation* myAnnotation5=[[MyAnnotation alloc] init];

myAnnotation5上设置属性之前的for循环内部。

现在的方式是,您只创建一个MyAnnotation对象并重复修改其属性。