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?
|
You should add your controller as the delegate of the In the delegate method you need to get the current 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:
How you parse the text is up to you. 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. |
|||||||||||
|
|
Sure. You can give the 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. |
|||||
|
|
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. |
|||||
|