我正在尝试通过使用故事板来实现 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 相关的查看器是左侧带有箭头的初始视图。
还有什么我想念的吗