在我的应用程序正在使用的库,一切都设置JASidePanels和使用故事板的工作,但我想通过点击tableViewCell从我的中心观点推向一个详细视图,并为我假设我需要一个UINavigationController,可以我莫名其妙地使centerViewController从一个UINavigationController开始?
Answer 1:
你必须把故事板的标识符到导航控制器嵌入你想拥有为中心面板上的主视图控制器; 然后,设置中央面板在你的“基地”视图控制器(您JASidePanelController子类的)与它初始化。
// Hamburger menu setup
-(void) awakeFromNib
{
[self setLeftPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"menuViewController"]];
[self setCenterPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"mainDashboardNavigationController"]];
}
其中,“mainDashboardNavigationController”设置为嵌入你要表现为中央面板什么的UINavigationController故事板标识符。
希望它可以帮助你,看在链接下面的截图中更多的细节。 Xcode的截图
文章来源: ios JASidePanels make the UINavigationController the centerViewController