I've got a UIToolbar in Interface Builder and I've noticed that it's locked to being 44px tall. Ideally I'd like to make this larger.
Do Apple allow resizing of this control? and if so, how do I go about it?
I've got a UIToolbar in Interface Builder and I've noticed that it's locked to being 44px tall. Ideally I'd like to make this larger.
Do Apple allow resizing of this control? and if so, how do I go about it?
AFAIK, You can't change its height.
You could create one of your own and set whatever size you want.
Update:
The only advantage that UIToolbar gives you is that you can drop bar button items and space bar button items on it for easier location.
These can be easily replaced by a simple UIView that will contain regular buttons (UIButton) if you need it to look different from the built-in toolbar.
Sure, just set its frame differently:
[myToolbar setFrame:CGRectMake(0, 50, 320, 35)];
This will make your toolbar 35 pixels tall. Of course this requires an IBOutlet or creating the UIToolbar programmatically, but that's very easy to do.