views:

120

answers:

1

How does one do this?

Note that I do not want a controller. Just a tab bar.

+1  A: 

UITabBar *aTabBar = [[UITabBar alloc] initWithFrame:aFrame];

You’ll probably need to refer to the class documentation for instance methods like -setItems:animated:. Also, see the UITabBarDelegate protocol.

Jeff Kelley