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個持っています。どうすればそれらを配列に入れることができますか。