views:

49

answers:

1

How do you make a tab bar application from scratch, using Interface Builder? Is there a tutorial that shows how to do this?

So far I've figured out that you need to start with a Windows-based application. Then do you open MainWindow.xib and add the tab bar controller there?

+1  A: 

Yes you can add a TabBarController from the Library. Then you have to link it to the window's RootViewController, and you're set.

jv42
Is the File's Owner of MainWindow.xib the root view controller? I can't make a connection to it. The only connection it has is delegate.
awakeFromNib
In your MainWindow.xib, you have a 'Window' item, of type UIWindow. This item has a 'rootViewController' outlet.
jv42