我有两个视图控制器,FirstViewController和 第二视图控制器。我使用这段代码切换到我的第二个 ViewController (我还向它传递了一个字符串) :
secondViewController *second = [[secondViewController alloc] initWithNibName:nil bundle:nil];
second.myString = @"This text is passed from firstViewController!";
second.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:second animated:YES];
[second release];
然后,我在 second ViewController 中使用这段代码切换回 firstViewController:
[self dismissModalViewControllerAnimated:YES];
这一切都很好。我的问题是,如何将数据传递给第一个 ViewController?我想要从 second ViewController 向 first ViewController 传递一个不同的字符串。