如何在 Xcode 的 mapview 中创建一组注释?我试过 NSMutableArray *ann = [NSMutableArray alloc]init];
注释
CLLocationcoordinate2D thecoordinate;
thecoordinate.latitude =92.3;
thecoordinate.longitude = 12.78;
MyAnnotationClass *ann = [MyAnnotationClass alloc];
region.coordinate = thecoordinate;
[mapview addannotation: ann];
我有 57 个这些我如何将它们放在一个数组中。