故事板2导航控制器指向同一视图(StoryBoard 2 navigation controller

2019-09-20 07:21发布

没有人知道为什么这不起作用?

有了这个,只是一个标签栏加载视图,另外的人黑屏。 我曾尝试没有导航控制器和标签栏是正确的,其他不运行模式下显示的TabBar项目。

Answer 1:

我对这个问题的答案,如果有人有兴趣。

添加将推出我们感兴趣的视图两种观点。 这2次相同的文件:

@interface PushToAgenceViewController : UIViewController
@end

-(void) viewWillAppear:(BOOL)animated {
    [self performSegueWithIdentifier: @"pushName" sender: self];
}


文章来源: StoryBoard 2 navigation controller pointing same View