我的应用程序中有两个视图。
启动应用程序后,我使用如下按钮切换视图:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Storyboard" bundle:[NSBundle mainBundle]];
UIViewController *view = [storyboard instantiateViewControllerWithIdentifier:@"view_a"];
[self presentViewController:view_a animated:NO completion:nil];
但是每当我切换视图时,上面的代码都会初始化视图。我想保持视图的先前状态。
我怎么解决这个问题?