この方法で、多くの MKMapViews で注釈の座標を見つけようとしています。
NSMutableArray *latitudes = [NSMutableArray array];
for (MKMapView *map in MapViewArray)
{
NSString *latitude = [NSString stringWithFormat:@"%.2f", [map.annotations lastObject].coordinate.latitude];
[latitudes addObject: latitude];
}
NSMutableArray *longitudes = [NSMutableArray array];
for (MKMapView *map in MapViewArray)
{
NSString *longitude = [NSString stringWithFormat:@"%.2f", [map.annotations lastObject].coordinate.latitude];
[longitudes addObject: longitude];
}
ただし、このコードでは次のエラーが発生します。
property 'coordinate' not found on object of type id
どうすれば解決できますか??
配列内のマップ ビューは次のタイプです。
@property (nonatomic, retain) IBOutlet MKMapView *mapView2;