Move from view controller to tab bar controller?

You could try and create the tab bar controller first. Then show the full-screen splash screen modally (e.g. Without animation, so that user won't notice the tab bar controller) and off that splash screen you present location selector. Once the user is done with it you dismiss both modal controllers revealing tab controller.

You could try and create the tab bar controller first. Then show the full-screen splash screen modally (e.g. Without animation, so that user won't notice the tab bar controller) and off that splash screen you present location selector. Once the user is done with it you dismiss both modal controllers revealing tab controller.

If you need to set up view controllers in your tab bar controller based on the information you're getting from location selector you can do it e.g. Via a delegate, that is: Implement delegate for splash screen and location selector Instantiate tab bar controller Show the splash screen, setting current vc of tab bar controller a delegate of the splash screen Show location selector, setting its delegate to the same view controller (you'll have the handle in splash screen) Once user dismisses location selector you inform the delegate about it and it's able to collect needed data from the location selector. I hope it helps.

At first make the tabbarcontroller then make uiview controller ...such as... NSMutableArray *listOfViewControllers = NSMutableArray alloc init; tab1view = tab1viewcontroller alloc initWithNibName:@"tab1viewcontroller" bundle:nil; listOfViewControllers tab1view; tab1view release; tab2view = tab2viewcontroller alloc initWithNibName:@"tab2viewcontroller" bundle:nil; listOfViewControllers tab2view; tab2view release; self. TabBarController setViewControllers:listOfViewControllers animated:YES; I think it will help you.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions