It is possible to render a .RTF file in iOS using a UIWebView (see here). How would one directly 'render' an .RTF file to a custom layer, without depending on UIWebView?
I'm displaying a table view with a custom UITableViewCell. The cell has the following format:
Cell Title
Cell SubTitle
/
|
| Variable length RTF content
|
\
The RTF content comes directly from a series of files shipped with the app. Historically, I could convert the RTF to HTML and use a UIWebView. With more and more user content and additional functionality to share content between mobile and desktop users, the preferred file format to use is .RTF.
On MacOS, you can use (id)initWithRTF:(NSData *)data documentAttributes:(NSDictionary **)dict to create a NSAttributedString. What would the equivalent be on iOS? Is it even possible?