Re: NSTextView text coloring problem
Re: NSTextView text coloring problem
- Subject: Re: NSTextView text coloring problem
- From: Graham Cox <email@hidden>
- Date: Thu, 24 Apr 2008 08:42:06 +1000
On 24 Apr 2008, at 8:19 am, tyler durden wrote:
Any suggestions ?????
IBOutlet NSTextView* _view;
[(_view) setTextColor:[NSColor redColor] range: NSMakeRange(1,5)];
You can just set the fore-colour attribute on the text itself:
(typed into Mail)
[[_view textStorage] addAttribute:NSForegroundColorAttributeName value:
[NColor redColor] range:NSMakeRange( 1, 5 )];
Aside: your ivars shouldn't start with an underscore - Apple reserves
such names for its own classes.
hth,
G.
_______________________________________________
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