I am using a \"spinner\" NSProgressIndicator in my cocoa app:
I would like to display it in a different color so that it will show up well on a dark backgr
This is what I've done:
#import ... CIFilter *lighten = [CIFilter filterWithName:@"CIColorControls"]; [lighten setDefaults]; [lighten setValue:@1 forKey:@"inputBrightness"]; [self.indicator setContentFilters:[NSArray arrayWithObjects:lighten, nil]];