0

我有一个在地图上显示位置的应用程序。我想将数据从第一个视图(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];}

提前致谢

4

1 回答 1

1

尝试这个:

在您的 SecondViewController.m 上,添加方法(不要忘记在您的 SecondViewController.h 上声明它):

-(void)setValue:(NSMutableArray*)array
{
NSMutableArray *PlaceDetailMutableArray = [[NSMutableArray alloc] init];
PlaceDetailMutableArray = array;
}

在第一个 ViewController 上,添加以下代码:

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([segue.identifier isEqualToString:@"DetailView"]) {
 PlaceDetailViewController *det= segue.destinationViewController;
 [det setValue: PlaceMutableArray];
}
}

最后,将示例代码更改为:

- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view     calloutAccessoryControlTapped:(UIControl *)control
{
[self performSegueWithIdentifier:@"DetailView" sender:view];
}
于 2013-11-12T01:22:17.120 回答