在点击注释时将数据传递到另一个视图控制器

时间:2013-11-11 23:06:15

标签: ios iphone uiviewcontroller mapkit

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

提前致谢

1 个答案:

答案 0 :(得分: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];
}