Hello everybody. i am making a tabbar based app. but the problem is i have several views like login view and a tableview that has to be shown before the tabbar view. My problem is if take a tabbar based application it dosnt have a navigation controller, so when i want to push the another viewcontroller from the tableview controller it is not possible. the flow of my app would be:
first screen loginview -> TableView (rootviewcontroller) -->tabbar View.
I am adding the loginview from appdelegate using addSubviewmethod. Then from LoginViewController i do the following :
myAppDelegate *appDel=(myAppDelegate*)[[UIApplication sharedApplication]delegate];
[aapDel.view addSubview:myTableViewController.view];
Now if i want to push something from the myTableViewcontroller it does not respond. moreover there is no navigation bar on the mytableviewcontroller. Plz help me.