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

I'm working on a Cocoa text editor which uses an NSTextView. Is it possible to change the color of certain portions of the text?

share|improve this question

3 Answers

up vote 19 down vote accepted

You should add your controller as the delegate of the NSTextStorage object of the NSTextView ([textView textStorage]) and then implement the delegate method ‑textStorageDidProcessEditing:. This is called whenever the text changes.

In the delegate method you need to get the current NSTextStorage object from the text view using the -textStorage method of NSTextView. NSTextStorage is a subclass of NSAttributedString and contains the attributed contents of the view.

Your code must then parse the string and apply coloring to whatever ranges of text are interesting to you. You apply color to a range using something like this, which will apply a yellow color to the whole string:

//get the range of the entire run of text
NSRange area = NSMakeRange(0, [textStorage length]);

//remove existing coloring
[textStorage removeAttribute:NSForegroundColorAttributeName range:area];

//add new coloring
[textStorage addAttribute:NSForegroundColorAttributeName 
                    value:[NSColor yellowColor] 
                    range:area];

How you parse the text is up to you. NSScanner is a useful class to use when parsing text.

Note that this method is by no means the most efficient way of handling syntax coloring. If the documents you are editing are very large you will most likely want to consider offloading the parsing to a separate thread and/or being clever about which sections of text are reparsed.

share|improve this answer
This is a bit old, but how would I implement -textStorageDidProcessEditing: into the delegate? – TheDeveloper Jul 23 '12 at 15:53
Just like any other delegate method. Look up the signature of the method in the docs and place it in your delegate object's implementation. Make sure your delegate object is set as the delegate of the NSTextStorage. – Rob Keniger Jul 23 '12 at 22:07
Thanks, +1. Your method works much better than my attempt – TheDeveloper Jul 24 '12 at 2:37
@RobKeniger, I think the controller needs to be the NSTextStorage's delegate, not the NSTextView's delegate. Is that right? That's my experience and what the comment suggests, but it contradicts and makes confusing the first two paragraphs of the answer. – noa Oct 8 '12 at 21:07
Yeah, you're right. I've fixed the answer, thanks! – Rob Keniger Oct 8 '12 at 22:52

Sure. You can give the NSTextView an NSAttributedString, and some of the stuff you can do with the attributed string is apply colors to certain subranges of the string.

Or you can search on Google and see that a lot of people have done stuff with this before.

I'd probably recommend using OkudaKit.

share|improve this answer
1  
it seems OkudaKit is not longer in development – Stephan Dec 12 '12 at 5:47

I recommend you to start by reading the CocoaDev page about Syntax Highlighing. A lot of people have come with solutions for various goals.

If you want to perform source code syntax highlighting, I suggest you to take a look at the UKSyntaxColoredTextDocument from Uli Kusterer.

share|improve this answer
Lol, never downloaded so many samples from 1 single site, great! – Antwan van Houdt Jul 26 '11 at 20:01
the mentioned tool is now on github: UKSyntaxColoredTextDocument – Stephan Dec 12 '12 at 5:54

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.