I wrote the following code to make my toolbar transparent.
[mtoolbar setBackgroundColor:[UIColor clearColor]];
How do I make UIToolbar
UIToolbar
Check the below code
[myToolbar setBarStyle:UIBarStyleBlack]; [myToolbar setTranslucent:YES];
Taken from
@Brandon Bodnár has answered in the below SO post.
Couldn't UIToolBar be transparent?
you could also use the different approach
Transparent UIToolBar