4
我正在嘗試使用Storyboard實現JASidePanels example2。 https://github.com/gotosleep/JASidePanels#example-2-storyboardsJASidePanels示例-2使用故事板:崩潰
-(void)awakeFromNib
{
[self setLeftPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"leftViewController"]];
[self setCenterPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"centerViewController"]];
[self setLeftPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"rightViewController"]];
}
如果我在上面的代碼到CenterViewController.m這是作爲MySidePanelController.m在示例2作爲相同加入,則該應用被應聲象下面。
-(void)awakeFromNib
{
// [self setLeftPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"leftViewController"]];
// [self setCenterPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"centerViewController"]];
// [self setLeftPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"rightViewController"]];
}
如果我註釋掉上面一樣,應用程序的工作就像下面。
我是新來的iOS。 你能告訴我什麼是錯的?
我的環境。
- 的XCode:4.6.2版
- iOS版SDK:6.1
- 模擬器:iPhone 6.1
謝謝@Moxy!我的應用現在可以運行 – suzu 2013-05-07 00:42:27
不客氣! – Moxy 2013-05-07 07:00:10
感謝@suzu提出這個問題,並感謝@ Moxy爲簡單的答案,保持搖擺的傢伙! – 2014-01-14 14:44:17