Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When the NSTextField (Label) is bound to a controller selection with bindings, and I have specified placeholder values for the Multiple Values Marker, No Selection Marker, etc it draws the text with a gray color that does not show up well on a dark background.

Is there a way to change the text color it uses to display the placeholder text?

share|improve this question

2 Answers

up vote 8 down vote accepted

Use an attributed string specifying the color you want, like this:

NSDictionary *blueDict = [NSDictionary dictionaryWithObject: [NSColor blueColor]
						forKey: NSForegroundColorAttributeName];
NSAttributedString *blueString = [[[NSAttributedString alloc] initWithString: @"test"
							    attributes: blueDict] autorelease];

Then you can either set the placeholder attributed string directly:

[[field cell] setPlaceholderAttributedString: blueString];

or do it through a binding, for example:

[field2 bind: @"value" toObject: [NSUserDefaults standardUserDefaults]
        withKeyPath: @"foo"
        options: [NSDictionary dictionaryWithObject: blueString forKey: NSNullPlaceholderBindingOption]];
share|improve this answer

you can try to make your own "palceholder". I mean your can show a label over your textfield with any text patameters you want.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.