我的應用程序中有兩個視圖。在iOS中無需初始化切換視圖
啓動應用程序後,我切換視圖與按鈕這樣的:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Storyboard" bundle:[NSBundle mainBundle]];
UIViewController *view = [storyboard instantiateViewControllerWithIdentifier:@"view_a"];
[self presentViewController:view_a animated:NO completion:nil];
但每當我切換視圖上面的代碼初始化視圖。 我想保持視圖的以前狀態。
我怎樣才能解決這個問題?