我正在使用xCode 4.3.1,我需要创建一个没有tabbars的基于导航的应用程序。我怎么能这样做是xCode 4.3.1? (它不像xcode 4.2那么简单)
答案 0 :(得分:2)
当然......
在您的应用程序中委派我们以下代码
YourClass *yourClassObj= [[YourClass alloc]init];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:yourClassObj];
[self.window addSubview:navController.view];
[yourClassObj release];
YourClass将是您希望成为根视图的类。
让我知道它是否有效或者我是否可以帮助你 干杯