2010-06-15 78 views
0

我想推UIViewController與UINavigationController。 它可以在4.0以前的任何SDK中完美工作,但它在4.0中不起作用。UINavigationController在4.0崩潰 - 不是<-4.0

我收到了OBJC_MSG_SEND(EXC_BAD_ACCESS)錯誤。 UIViewController不是零,也不是self.navigationController。

我試過NSZombieEnabled,但沒有顯示出來。

UINavigationController作爲控制器的一個視圖在UITabBarController下運行。這一切都是在MainWindows.xib中設置的。

對於什麼是錯誤的任何想法?這讓我瘋狂。

+0

很難說我們何時無法看到上下文中的代碼。 – jer 2010-06-15 10:53:07

+0

使用調試模式,它會立即停止在正確的代碼行中。 – Eiko 2010-06-15 10:54:33

回答

0
UIViewController *myViewController = [[UIViewController alloc] init]; 
[self.navigationController pushViewController:myViewController animated:YES]; 

希望這會起作用!

相關問題