views:

260

answers:

2

Does somebody know a rich text editor (like NSTextView for Mac OS X) library for the iOS platform?

+1  A: 

One doesn't exist, you'll have to craft one yourself. There are examples of using Core Text out there, if you just know where to look. For instance, the I7CoreTextExample is one such example.

jer
+2  A: 

The Omni Group also released some code that could be the start of a rich-text editor.

http://github.com/omnigroup/OmniGroup/tree/master/Frameworks/OmniUI/iPad/Examples/TextEditor/

Based on Core Text.

St3fan