NSProgressIndicator tintcolor
NSProgressIndicator tintcolor
- Subject: NSProgressIndicator tintcolor
- From: Gustavo Pizano <email@hidden>
- Date: Fri, 25 Feb 2011 23:31:11 +0100
Hello all.
Im just wondering why changing the tint color using the setControlTint of the progress bar to NSGraphiteControlTint doesn't has any effect, I keep seeing that aqua colors...
I have tried finding answers online but it seems everybody has that problem.. or everybody is doing something wrong.. hehehe.. including me.
what am I doing wrong?
here is the code that I use to create the progress indicator
progressIndicator = [[NSProgressIndicator alloc] initWithFrame:NSMakeRect(10, 5, 280, 8)];
[progressIndicator setMinValue:0.0f];
[progressIndicator setMaxValue:100.0f];
[progressIndicator setDoubleValue:50.0f];
[progressIndicator setIndeterminate:NO];
[progressIndicator setBezeled:YES];
[progressIndicator setControlTint:NSGraphiteControlTint];
[progressIndicator setDisplayedWhenStopped:YES];
[self.view addSubview:progressIndicator];
Thx
Gustavo
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden