目前,如果我使用预加载视图,它具有默认导航栏(没有主题,我在 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];
因此,在过渡中,我看到了默认导航栏:
当过渡完成时:
如何解决?要查看过渡中的主题视图?