我想包括一個導航控制器在我的tabbarcontroller的第三個選項卡。我有一些反饋,但只能得到這一點。下面的代碼不會產生任何錯誤,但似乎不起作用,因爲應用程序剛剛退出。有沒有人對我可能做錯了什麼有什麼意見?編程TabBarController與導航在appDelegate
UIViewController *viewController1 = [[FirstViewController alloc]
initWithNibName:@"PDCFirstViewController" bundle:nil];
UIViewController *viewController2 = [[SecondViewController alloc]
initWithNibName:@"SecondViewController" bundle:nil];
viewController3 = [[UIViewController alloc] initWithNibName:@"ThirdViewController"
bundle:nil];
UINavigationController *navigationcontroller = [[UINavigationController alloc]
initWithRootViewController:viewController3];
self.tabBarController = [[UITabBarController alloc] init];
self.tabBarController.viewControllers = [NSArray
arrayWithObjects:viewController1,viewController2,navigationcontroller, nil];
謝謝大家!
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([PDCAppDelegate class]));
}
}
據我所知,看起來好爲止。 –
您究竟在哪裏得到這次事故? crashlog是什麼樣的? –
@HermannKlecker,當應用程序啓動時我收到了崩潰。我已更新我的問題以顯示錯誤。 – Brandon