現在、プリロードされたビューを使用すると、デフォルトのナビゲーション バーがあります (テーマなしで、AppDelegate で UIAppearance を使用して適用します)。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UIStoryboard *sb = [UIStoryboard storyboardWithName:NSBundle.mainBundle.infoDictionary[@"UIMainStoryboardFile"] bundle:NSBundle.mainBundle];
InitialSlidingViewController *vc = [sb instantiateViewControllerWithIdentifier:@"InitialSlidingViewController"];
Person *person = [[self fetchedResultsController] objectAtIndexPath:indexPath];
[vc view]; //Preloading view
[self flipToViewController:vc fromItemAtIndexPath:indexPath withCompletion:NULL];
したがって、移行中にデフォルトのナビゲーションバーが表示されます。
移行が完了すると、次のようになります。
修正方法は?遷移中のテーマ ビューを表示するには?