-3

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)

Illep
  • 14,274
  • 40
  • 148
  • 258
  • 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 Answers1

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,513
  • 4
  • 38
  • 56
WaaleedKhan
  • 685
  • 7
  • 18