RTF format RTF for iPhone

Does anyone know of any library that will allow me to read / write RTF files on iPhone? NSAttributedString is the way to go, but since it is not yet available: - (

Essentially, I need to convert between plain text and RTF.

+1
source share
1 answer

The format of the RTF file is quite simple. Therefore, if you just need to create an RTF from simple plain text, you can simply manually create an RTF file.

To get started, open http://en.wikipedia.org/wiki/Rich_Text_Format .

+2
source

Source: https://habr.com/ru/post/1382608/


All Articles