我的應用程序從一個不使用ECSlidingViewController
的視圖開始,然後有一個按鈕指向另一個使用它的按鈕。ECSlidingViewController不是第一次查看
在使用Storyboard Segue
切換視圖時,但出現錯誤。
我應該添加到btnGoSecondView
以正確加載ECSlidingViewController
?
代碼:
-(IBAction)btnGoSecondView:(id)sender {
[self performSegueWithIdentifier:@"SecondViewShow" sender:self];
}
錯誤:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil'
這樣做完美的作品,如果我表示加載從InitialView我SecondView。但從FristView開始並使用'segue'切換,它不起作用。任何想法應該在'btnGoSecondView'正常工作? – 2013-02-26 05:06:41
我的建議錯誤是因爲menucontroller中的數組,因此在menucontroller中有一個用於命名數組的「(void)awakeFromNib」,所以您應該將viewcontroller與「NSArray arrayWithObjects」 – discodisky 2013-02-26 06:41:04