AP.
AP.

Reputation: 5323

HTML editor Cocoa control

I am looking for a Cocoa HTML editor control. Do you know if something like this already exists?

Upvotes: 2

Views: 2086

Answers (3)

hpique
hpique

Reputation: 120324

Here's CKEditor4ObjC, an open-source Cocoa HTML editor using CKEditor and WebView that I just created.

Upvotes: 4

Vervious
Vervious

Reputation: 5569

It's not hard to use document.execCommand(...) either, because WebKit is pretty compatible with it.

Upvotes: 0

John
John

Reputation: 3296

The only thing that I've seen that relates to what you're looking for is this simple example of how to use the TinyMCE JavaScript-based HTML editor in a Cocoa WebView.

Alternatively, I would take a look at this similar question and the corresponding link to helpful information that resides within it.

Upvotes: 2

Related Questions