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 doesn't 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.