我創建一個按鈕,並把它添加到我的工具欄是這樣的:ios從編程創建的按鈕從segue打開模式?
UIButton *sendButtzon = [UIButton buttonWithType:UIButtonTypeRoundedRect];
sendButtzon.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin;
[sendButtzon setTitle:@"More" forState:UIControlStateNormal];
sendButtzon.frame = CGRectMake(toolBar.bounds.size.width - 18.0f,
6.0f,
58.0f,
29.0f);
[toolBar addSubview:sendButtzon];
我怎樣可以打開一個新的viewController(我有一個名爲「更多查看」一SEGUE)?
我得到這個錯誤終止應用程序由於未捕獲的異常'NSInvalidArgumentException',原因:'接收器()沒有標識符'MoreView''的繼續 –
Alosyius
Oooops我錯過了實際的鏈接在IB的兩個意見! :)感謝很多人現在效果很好 – Alosyius
在這種情況下,segue或者沒有被定義,或者是從不同的視圖控制器定義的。 – jrturton