Is it possible to give a UIToolBar a custom background from an image rather than the usual tinted blue/black fade out?
I\'ve tried giving the view a background and s
UIToolbar inherits from UIView. This just worked for me:
[topBar insertSubview:[[[UIImageView alloc] initWithImage:[UIImage imageNamed:BAR_BKG_IMG]] autorelease] atIndex:0];