2

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

Rob Keniger
  • 45,830
  • 6
  • 101
  • 134
AP.
  • 5,205
  • 7
  • 50
  • 94

3 Answers3

4

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

hpique
  • 119,096
  • 131
  • 338
  • 476
2

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.

Community
  • 1
  • 1
John
  • 3,296
  • 2
  • 24
  • 36
0

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

Vervious
  • 5,559
  • 3
  • 38
  • 57