Test case: When I run it the text string is 20 point blue. When I click on a cell the text reverts to the default point size and color. What I’d like is to display some text in these cells that one can select and drag but I want the text to remain displayed as blue 20 point. I must be missing something obvious.
(void)awakeFromNib
{
NSRect frameRect = NSMakeRect(0, 0, 480, 48);
NSWindow *theWindow = [ [[NSWindow alloc] initWithContentRect:frameRect
styleMask:(NSTitledWindowMask|NSClosableWindowMask|NSMiniaturizableWindowMask|NSResizableWindowMask)
backing:NSBackingStoreBuffered
defer:YES] retain];
NSTextFieldCell *textCell = [ [[NSTextFieldCell alloc] init] autorelease]; [ textCell setSelectable:YES]; [ textCell setRefusesFirstResponder:YES];
NSMutableDictionary *attributesDictionary = [ NSMutableDictionary dictionaryWithObjectsAndKeys: [ NSColor blueColor], NSForegroundColorAttributeName, [ NSFont fontWithName:@”LucidaGrande” size:20], NSFontAttributeName, nil]; NSAttributedString *aString = [[NSAttributedString alloc] initWithString:@”test” attributes:attributesDictionary]; [ textCell setAttributedStringValue:aString];
NSMatrix *newMatrix = [ [[NSMatrix alloc] initWithFrame:frameRect mode:NSRadioModeMatrix
prototype:textCell numberOfRows:1 numberOfColumns:NCOLS] autorelease]; [ newMatrix setCellSize:NSMakeSize(frameRect.size.width/NCOLS, frameRect.size.height)];
theWindow contentView] addSubview:newMatrix]; [ theWindow center]; [ theWindow makeKeyAndOrderFront:self]; }
I think it is only [[NSTextView that allows you to set the attributes ahead of any characters that are typed. I think that also requires the use of RTF. But I am only guessing …
In your case, you might be able to set the attributes after the string is complete, say by attaching an
action to the cell that fires when
Thanks but I’m not typing or editing the text. I’m initializing it with “test”. The act of selection causes (presumably the field editor) to redraw it without its attributes. I’d like to be able to select the text without changing the text.
The only suggestion that I can make is this. Set the cell his attributes directly like:
[ textCell setTextColor:[ NSColor blueColor]];
[ textCell setFont:[ NSFont fontWithName:@"LucidaGrande" size:20]];
Hope this helps
If I understand correctly you’re suggesting maybe adding that statement after [ textCell setAttributedStringValue:aString]? Unfortunately that doesn’t have any effect on the problem.
What I ended up doing was a nasty hack that destroys some functionality but gets me the result I want. I send -textShouldEndEditing: of the selected cell and reselect it in a -windowDidResize: delegate.
I did try it right now, if I add it directly after
NSTextFieldCell *textCell = [ [[NSTextFieldCell alloc] init] autorelease]; [ textCell setSelectable:YES]; [ textCell setRefusesFirstResponder:YES]; [ textCell setTextColor:[ NSColor blueColor]]; [ textCell setFont:[ NSFont fontWithName:@”LucidaGrande” size:20]];
then I dont have a problem. It stays Blue and selectable. ( Xcode 1.5 - 10.3.5 )
That solves the selection problem. I had tested only against a version of my example that allows resizing.