私のアプリケーションには 2 つのビューがあります。
アプリを起動した後、次のようなボタンでビューを切り替えます。
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Storyboard" bundle:[NSBundle mainBundle]];
UIViewController *view = [storyboard instantiateViewControllerWithIdentifier:@"view_a"];
[self presentViewController:view_a animated:NO completion:nil];
しかし、ビューを切り替えるたびに、上記のコードはビューを初期化します。ビューの以前の状態を維持したい。
どうすればこの問題を解決できますか?