1
我有一個應用程序與2視圖控制器。第一個包含一個webview。防止用UIWebView重新加載視圖
- (IBAction) showSecondView
{
UIViewController *view = [self.storyboard instantiateViewControllerWithIdentifier:@"SecondViewController"];
[self presentModalViewController:view animated:YES];
}
和回第一視圖:
SecondViewController *view = [self.storyboard instantiateViewControllerWithIdentifier:@"FirstViewController"];
[self presentModalViewController:view animated:YES];
第一視圖被加載作爲第一次時,我通過IBAction爲導航到所述第二視圖。 我該如何防止第一個視圖重新加載?
你的問題不清楚。 – trojanfoe