slatvick
slatvick

Reputation: 1207

iPhone GUI like the build-in iPod application

Need a GUI with many tabs (TabBarController and UITabBar) and one fullscreen view, e.g. a view with player in the native iPod app. It's possible to show last from any tab. Currently use last iPhone SDK 3.0.

I tried many approaches, e.g. create Utility and put TabBarController on the flipside, but it throw an exception, because of there is no "plain" UIView on the NIB, except several in a TabBarController.

Upvotes: 0

Views: 820

Answers (2)

slatvick
slatvick

Reputation: 1207

Ok. My investigation is completed.

The best is to create TabBars application and show main independent view as modal using [self presentModalViewController:viewController animated:YES]; and [self dismissModalViewControllerAnimated:YES];

Thanks for the answers.

Upvotes: 0

Daniel Dickison
Daniel Dickison

Reputation: 21882

You would probably keep a pointer to the tab bar controller and a separate full-screen view controller in your app delegate. You'd have to manually implement switching out the tab controller's view and the full-screen controller's view.

Upvotes: 1

Related Questions