我创建了一个故事板,我想使用我的UINavigationController
. 中的初始视图storyboard
是一个UITableViewController
,所以我创建了一个子类UITableViewController
并在情节提要上设置该类以匹配它。
然后我尝试像这样显示故事板:
StoryBoardView *newView = [[StoryBoardView alloc] init];
[self.navigationController pushViewController:newView animated:YES];
但是,由于某种原因,我的观点没有显示出来。请问有人可以帮我吗?