Is there a good way to enable editing HTML content in an iOS app?
For example, if you are creating an email application and want to allow reply to email and edit the original message. It should pretty much support any valid HTML, including images, styles, etc.
I tried contenteditable UIWebViewand also used NSAttributedStringwith UITextView, but none of them is a good solution. UIWebViewThere is no way to control the content or cursor position, and UITextViewwill not display HTML that contains images and other elements.
source
share