我有一个在地图上显示位置的应用程序。我想将数据从第一个视图(MapViewController)传递到另一个视图(locationDetailViewController)
我已经使用下面的代码来传递数据,它将我带到另一个视图。但是,它不会将可变数组传递给另一个视图控制器......
- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control
{PlaceDetailViewController *det=[[PlaceDetailViewController alloc]init];
det.PlaceDetailMutableArray=PlaceMutableArray;
[self performSegueWithIdentifier:@"DetailView" sender:view];}
提前致谢