所以我已经设置了JASidePanels,它有一个实现JASidePanelController的根控制器和我的左侧面板,它是一个不同的UIViewController.
我的问题是左侧面板仅在用户第一次滑动中心面板时才接收viewWillAppear viewDidAppear/disappear和viewWillAppear以及viewDid/WillLoad.从那时起,这些回调函数不再被调用.
什么是最佳方式或如何在左侧面板视图控制器中响应这些事件.
我正在尝试JASidePanels使用我的项目实现storyboard.你可以在这里看到我的故事板.

问题是我没有看到导航栏中的按钮显示左侧面板.在我的RootViewController中,我在代码中使用它.
-(void) awakeFromNib
{
[self setLeftPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"leftViewController"]];
[self setCenterPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"centerViewController"]];
[self setRightPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"rightViewController"]];
self.shouldResizeLeftPanel = YES;
self.shouldResizeRightPanel = YES;
[self setRightFixedWidth:300.0f];
[self setLeftFixedWidth:300.0f];
}
Run Code Online (Sandbox Code Playgroud)
我按照他们在github页面上说的步骤进行了操作.当我试图嵌入RootviewController内部时navigationController.它显示的是navigationBar而不是barbutton item.
对此有何帮助?