I am using xCode 4.3.1, and i need to create a navigation based application without the tabbars. How can i do this is xCode 4.3.1 ? (It is not as simple as xcode 4.2)
Asked
Active
Viewed 1,856 times
-3
-
possible duplicate of [Xcode 4.2 creating navigation based application](http://stackoverflow.com/questions/7869594/xcode-4-2-creating-navigation-based-application) – Parth Bhatt Mar 28 '12 at 15:01
1 Answers
2
Sure thing....
In ur Application Delegate us Following Code
YourClass *yourClassObj= [[YourClass alloc]init];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:yourClassObj];
[self.window addSubview:navController.view];
[yourClassObj release];
YourClass will be the class which you want to be ur root view.
Let me know if it worked or if i can help u more Cheers

Mat
- 7,613
- 4
- 40
- 56

WaaleedKhan
- 685
- 7
- 18
-
1Use Master Detail Template... the first template on the Template Screen – WaaleedKhan Mar 28 '12 at 14:04