我的环境,
iOS6
Xcode 4.5.1
application for iOS5 or later
我使用两个 ViewController。
FirstViewController 具有 webView 以及调用 SecondViewController 的 segue 模态。
[self performSegueWithIdentifier:@"foo" sender:self];
然后,关闭 SecondeViewController 后,我想在 FirstViewController 中重新加载 webView。我怎样才能重新加载这个?
我使用以下代码关闭 SecondViewController。
[self.parentViewController dismissViewControllerAnimated:YES completion:^{ }];
提前谢谢了。