Reputation: 6373
I'm trying to develop a really good and cute looking text message input controller like TTMessageController from three20 but with some simple WYSIWYG controls. For the first step I want to go super-simple and make it have Bod Italic and underlines only.
I know it's a very general question but I want to hear...
Thanks in advance.
Upvotes: 1
Views: 1263
Reputation: 3231
On iOS >=4 you can use an UIWebView with designMode and contentEditable. In previous versions you can do a mix between native code and interpreted javascript/dom manipulation.
Upvotes: 2