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
.
これについて何か助けはありますか?