私は現在、ドロワー インターフェイスを備えたこのようなアプリを持っていますが、別のビューに移動すると、現在のビューですべてがリセットされ、同じままになることはありませんか?
これは、ビューを切り替えると私のコードがどのように見えるかです。
[self.slidingViewController anchorTopViewOffScreenTo:ECRight animations:nil onComplete:^{
CGRect frame = self.slidingViewController.topViewController.view.frame;
self.slidingViewController.topViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"homeChannel"];
self.slidingViewController.topViewController.view.frame = frame;
[self.slidingViewController resetTopView];
[tableView deselectRowAtIndexPath:indexPath animated:YES]; }];
だから私の質問は、「タブ付きアプリなどの別のビューに移動しながら、ビューを維持するにはどうすればよいですか 」です。
私のtableViewなど、別のビューに移動して元のビューに戻ると、リセットされます。