5

I have created a UIToolbar. I am trying to give it black color using:

toolbar.barStyle = UIBarStyleBlackOpaque;

or

toolbar's background property. But its color does not change in either case.

How can I change it?

Parth Bhatt
  • 19,381
  • 28
  • 133
  • 216
Ali
  • 1,975
  • 5
  • 36
  • 55

4 Answers4

14

IN iOS 7 you need to set the barTintColor Property-

UIToolbar *doneToolbar=[[UIToolbar alloc]initWithFrame:CGRectMake(0, 584, 320, 44)];
doneToolbar.translucent=NO;
doneToolbar.barTintColor=[UIColor redColor];
[self.view addSubview:doneToolbar];

I have used it its working fine...

Ashish
  • 1,899
  • 20
  • 22
7

Have you tried setting the tint property on UIToolbar? ie:

- (void)viewDidLoad {
  [super viewDidLoad];
  UIToolbar *toolbar=[[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 320, 46)];
  toolbar.tintColor=[UIColor redColor];
  [self.view addSubview:toolbar];
  [toolbar release];
}

Detailed in the apple docs

Twelve47
  • 3,924
  • 3
  • 22
  • 29
  • unfortunately it doeson't response to tintcolor either – Ali Apr 07 '11 at 14:38
  • tools = [[uitoolbar alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 46.01f)]; – Ali Apr 07 '11 at 14:45
  • I just tried creating a new "view-based" application and added the (updated) code above to the viewController and it worked for me. – Twelve47 Apr 07 '11 at 14:53
0

On IOS 10, apparently we also need to call sizeToFit on the UIToolBar to change the background color:

This worked for me:

let dummyToolbar = UIToolbar()
dummyToolbar.barTintColor = .lightGray
dummyToolbar.sizeToFit() // without this line it doesn't work
Adrian
  • 19,440
  • 34
  • 112
  • 219
0

Use this after you allocate and initialize you toolbar object:

toolbar.tintColor = [UIColor darkGrayColor];

Hope this helps you.

Parth Bhatt
  • 19,381
  • 28
  • 133
  • 216
Sagar...
  • 1,062
  • 3
  • 15
  • 35