Try this code, it will help you,
UIToolbar *toolbar = [[UIToolbar alloc] init]; toolbar.frame = CGRectMake(0.0, 0.0, self.view.frame.size.width, 44.0); toolbar.barStyle = UIBarStyleBlackTranslucent; toolbar.tintColor = [UIColor blackColor]; toolbar.alpha = 0.0;
Change tintColor and alpha based on your requirements.
Nimisha patel
source share