vote up 2 vote down star
1

I'm planning to do a Cocoa app that requires code syntax to be colored (in all common languages). Instead of writing my own code highlighter/parser, are there any pre-made solutions available?

Thanks

flag

1  
Do you mean you want to write a Cocoa app that highlights code entered by a user, or you want to write a Cocoa app with the source for that app syntax highlighted? Your question is a little unclear. – Perspx Oct 4 at 20:08
1  
I think he needs to highlight code entered by a user (Plus he said "in all common languages", I doubt he wants to use PHP, ruby, python and perl in his application :D) – naixn Oct 4 at 20:13
Ah yes, fair point. – Perspx Oct 4 at 20:14
naixn is corrrect, thats what I want to do. Sorry for any confusion – PCWiz Oct 4 at 22:41

4 Answers

vote up 8 vote down check

You might be able to use something like Geshi, but there're also the resources listed here: http://www.cocoadev.com/index.pl?SyntaxHighlighting

Edit

More links:

link|flag
3  
Geshi is written in PHP. It would be tedious to integrate into a Cocoa app. Drilling through your second link; this is relevant: cocoadev.com/index.pl?ImplementSyntaxHighlighting/… – Dominic Cooney Oct 4 at 20:22
Good links, will check them out – PCWiz Oct 5 at 0:46
vote up 0 vote down

You can use highlight that is used in QLColorCode :) (however, it's not a Framework that you include in your code, but a command-line utility)

EDIT: Ah yeah, use Geshi, it's probably better :D

link|flag
This is an application that syntax-highlights code. The questioner wants to make the application he or she is writing highlight code. – Dominic Cooney Oct 4 at 20:19
vote up 1 vote down

You can also use the JavaScript library SyntaxHighlighter and embed it into a WebView into your app.

link|flag
If I can get this working in a webview, that would work brilliantly :D – PCWiz Oct 5 at 0:47
vote up 3 vote down

An excellent solution is Uli Kusterer's UKSyntaxColoredTextDocument. It is fast and has several built-in syntax parsers. It's easy to add new languages.

It's free for non-commercial use and very cheap if you want it for a commercial app.

link|flag
Wow can't believe I didnt find this before. Thanks a ton. – PCWiz Oct 5 at 3:48

Your Answer

Get an OpenID
or

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