I have a tab bar along with navigation controller iphone application. Now I need another MainView before this tab bar view is shown..please help me in doing so.
When i use navigationController for the MainView and display it using
self.window.rootViewController = self.navController;
instead of earlier used
self.window.rootViewController = self.tabBarController;
then i get the MainView, but in other views the tabbars are not shown. The navigation to other view is done through button on this MainView
Could any one explain me how would i get this done..i.e. a main view (without tab bar) and the next views all be with tab bars
In App Delegate Method add MAinView in Navigation Controller and then add to window:
Now button’s click event which is present in MainView its method is below: