Allan
Allan

Reputation: 2096

About Custom TabBarViewController

Here are two custom UITabBarViewController demos

BrowserTabViewDemo

AKTabBarController

I always use UITabBarController to make custom tabbar , but these two project use UIViewController to management another viewcontrollers not UITbarBarController.

My question is how to management many viewcontrollers by one UIViewController . and what is different UITabBarviewcontroller

Upvotes: 0

Views: 223

Answers (1)

rdelmar
rdelmar

Reputation: 104082

UITabBarController is one of Apple's pre-made container controllers, as is UINavigationController. You can make your own custom container controller using the methods in the "Managing Child View Controllers in a Custom Container" section of the UIViewController Class reference. There is a video in the WWDC 2011 sessions called "Implementing UIViewController Containment" -- that's a good place to learn about this subject.

Upvotes: 2

Related Questions