I have an app in which I have an activationView. After the app is activated, I need to show rest of the views in Tabs. I have googled and found that to use Tabs in iPhone the application must be a Tab Bar Application which my application isn't as per my requirement. What is the best way to implement tabs(on second View in app) ?
EDIT 1
Codes I have tried
/* tabsController = [[Tabs alloc] init];
[self.window setRootViewController:tabsController];*/
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication]delegate]; appDelegate.window.rootViewController = tabsController;
I have tried the these ways but I am getting a plain white View.