我花了年齡停留在此:使用標籤欄模板(不包括故事板)我可以標籤之間輕鬆切換每個表中視圖之間切換,但是當談到在UITabBarController
和UIViewController
之間切換,無論我繼續嘗試的任何代碼是行不通的。一個的UITabBarController和一個UIViewController(iOS版的Xcode)之間切換
-(IBAction)tabtoview:(id)sender{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp
forView:self.view
cache:YES];
[self.tabBarController removeFromParentViewController];
[self.view addSubview:self.mainscreen]; //Crashes here
[UIView commitAnimations];
}
比除去tabBarController
相反,它將是優選的,如果我能隱藏/具有動畫後禁用它。任何幫助表示感謝,謝謝!
什麼是錯誤消息當它崩潰? – carbonbasednerd 2012-01-02 13:51:20
SIGABRT - '終止應用程序由於未捕獲的異常「NSInvalidArgumentException」,原因:「 - [UIViewController中上海華]:無法識別的選擇發送到實例0x6dae9f0'' – Nightfa11 2012-01-02 14:22:49