I think you are talking about the UIToolbar top, not the toolbar at the bottom.
Changing the appearance of a UINavigationBar or UIToolbar very simple, you can just use the image instead of the calculated tintColor and the default gradient.
To do this, you need to subclass (or make a category) UINavigationBar or UIToolbar and overwrite the drawRect: method, for example:
- (void)drawRect:(CGRect)rect { UIImage *image = [UIImage imageNamed:@"toolbarBackground.png"]; [image drawInRect:rect]; }
This image then drawn in the exact rect UINavigationBar or UIToolbar , functioning as a background image.
Douwe maan
source share