views:

4949

answers:

2

In iPhone OS 3.0, you can set the toolbar items of a UINavigationController using the setToolbarItems:animated: method. However, this requires you pass in an array of UIToolbarItems. While I could programmatically create these toolbar items, I'd rather create them in Interface Builder if possible.

With this in mind, I have created a UIToolbar in "MyGreatViewController.xib" and have populated it with the wanted toolbar items. Then, in "MyGreatViewController.m", I get the items from the toolbar and pass them to setToolbarItems:animated::

- (void)viewDidLoad {
    [super viewDidLoad];
    [self setToolbarItems: [toolbar items]];
}

...where toolbar is an IBOutlet referring to the UIToolbar.

Is this a good approach? Is there a better way to accomplish this? Should I just create the items programmatically?

+2  A: 

It's a perfectly acceptable way of doing it, but do bear in mind that loading xib files is quite expensive on the iPhone, and it may well be faster to create the toolbar items programatically in your viewDidLoad method.

iKenndac
Great. Since the XIB is already being loaded when the view controller class initialises (I checked "With XIB for user interface" when creating the view controller files), this approach shouldn't be any more expensive than programmatically creating the toolbar items.
Steve Harrison
Ah, if you're already loading an XIB then you won't add too much extra time. Unarchiving objects from an XIB *is* more expensive than creating them in code, but unless your view takes ages to load I wouldn't worry about it.
iKenndac
+4  A: 

I don't know if this is documented anywhere, but I've found that in Interface Builder, if you enable the navigation controller's toolbar, you can drag bar items to your view controller, and they will automagically show up in the navigation controller's toolbar.

For example, here's what we can do (using Xcode 3.2 on Snow Leopard):

  1. File->New Project.... Choose Navigation-based Application and create the project.
  2. Open MainWindow.xib in Interface Builder.
  3. Select the Navigation Controller, and in the Attributes inspector, check the "Shows Toolbar" box. This will cause a Toolbar object to appear.
  4. Drag a Bar Button Item from the Library to the toolbar. It will appear in the toolbar. If you check the hierarchy in the NIB, you'll see that this new item is a child of the RootViewController.

It seems that any Bar Button Items added as children of the navigation item will show up in the navigation bar, and any Bar Button Items added as children of the view controller will show up in the toolbar.

(I stumbled on this by accident. If anyone can find documentation for this behavior, or any additional info, I'd like to hear about it.)

Kristopher Johnson
I believe that's just the way it's supposed to be. Kind of like `UIViewController` magically loading it's xib if it has a matching filename.
Sneakyness
It works! This is definitely the best way to set up the toolbar in a navigation view, I think.
Nathan Reed
In my application, I have a Tab Bar Controller and one of the tabs is a navigationController - pretty standard configuration. However if I follow what Kristopher is suggesting, after step 3, the toolbar appears behind the Tab Bar in the IB! And when I try step 4 (I tried to add segment control/button), it just does not allow my to drop it on toolbar. Am I missing something here?
Dev