ストーリー ボードを使用して JASliding パネルを実装しようとしています。左側と中央のパネル、および jaslider クラスのサブクラスを作成しました。
#import "RootViewController.h"
@interface RootViewController ()
@end
@implementation RootViewController
-(void) awakeFromNib
{
[self setLeftPanel:[self.storyboard
instantiateViewControllerWithIdentifier:@"leftViewController"]];
[self setCenterPanel:[self.storyboard
instantiateViewControllerWithIdentifier:@"centerViewController"]];
[self setRightPanel:nil];
}
@end
左と中央のパネルのみを使用したい。私は出力でこれを取得し続けます
JASidePanelSB[31404:c07] アプリケーション ウィンドウには、アプリケーションの起動の最後にルート ビュー コントローラーが必要です。
識別子を使用してストーリーボードにビューアーを作成しました。RootViewController に関連付けられたビューアーは、左側に矢印がある初期ビューです。
他に何か足りないものはありますか