地図上に場所を表示するアプリがあります。最初のビュー (MapViewController) から別のビュー (locationDetailViewController) にデータを渡したい
以下のコードを使用してデータを渡すと、別の 2 番目のビューに移動します。ただし、可変配列を別のView Controllerに渡しません...
- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control
{PlaceDetailViewController *det=[[PlaceDetailViewController alloc]init];
det.PlaceDetailMutableArray=PlaceMutableArray;
[self performSegueWithIdentifier:@"DetailView" sender:view];}
前もって感謝します