Transparent UIToolbar
I wrote the following code to make my toolbar transparent. [mtoolbar setBackgroundColor:[UIColor clearColor]]; How do I make UIToolbar transparent? Luke You can set the property translucent to YES and see if this helps. [self.toolbar setBackgroundImage:[UIImage new] forToolbarPosition:UIToolbarPositionAny barMetrics:UIBarMetricsDefault]; [self.toolbar setBackgroundColor:[UIColor clearColor]]; Setting the property translucent to YES will not work in iOS 5 and below. Here's how it can be done without subclassing toolbar: const float colorMask[6] = {222, 255, 222, 255, 222, 255}; UIImage *img = [