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];
}
github pageで彼らが言う手順に従いました。RootviewControllerまた、内部に aを埋め込もうとするとnavigationController. それは、navigationBar を表示していますが、barbutton item.
これについて何か助けはありますか?