+1  A: 

This is not a standard toolbar, but a custom view. You can't do this using the basic UI classes, you'll have to write your own. A simple thing to try is to create a large toolbar and add fields as standard subviews on top of it.

Ben Gottlieb
Hmm, ok thanks! Thought that might be the case.
Eric
A: 

You would have to create a UIBarButtonItem with a custom view.

- (id)initWithCustomView:(UIView *)customView
willcodejavaforfood