我有一个带有2个视图控制器的应用程序。第一个包含webview。当我通过ibaction导航到第二个视图时:
- (IBAction) showSecondView
{
UIViewController *view = [self.storyboard instantiateViewControllerWithIdentifier:@"SecondViewController"];
[self presentModalViewController:view animated:YES];
}
并返回第一个视图:
SecondViewController *view = [self.storyboard instantiateViewControllerWithIdentifier:@"FirstViewController"];
[self presentModalViewController:view animated:YES];
第一个视图第一次加载。 我如何防止第一个视图正在重新加载?
答案 0 :(得分:0)
你不会回去,你只是再次呈现第一个视图。要返回上一个视图,只需解散当前显示的viewController:
[self dismissViewControllerAnimated:YES completion:nil];