Extension or module for text editing in iOS apps

We need to add text editing and formatting to our app. We both have inline formatting like bold, italic, underline as well as paragraph styles like heading 1, 2 and 3. We have multiple pages showing the text in a text area. I thought this would be a simple task however it is very complicated to apply styles and display them.


Is is there a extension or module I can utilize to have core text formatting functionality added to my code?

Replies

You should write your own func or extensions, to apply some style to a subrange of a text.


It is not very difficult, just a bit tedious.


If you have problems, please post the code you have written so far, we'll try to help.