Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 6 Beta UIWebView Cannot read .rtf

Console message: 2014-08-09 15:51:37.526 Agpeya[1306:29686] Cannot find data converter callback for uti public.rtf

like image 696
johnny Avatar asked Aug 09 '14 23:08

johnny


1 Answers

From the iOS 8 Release Notes

Known Issue

RTF file support in UIWebView is broken.

Workaround: Show RTF files to the user is to use the Quick Look framework (QLPreviewController) or to load an NSAttributedString from the RTF file and show it in an UITextView, which will render the content in a much cleaner way.

I assume they will fix this in an upcoming release. One would hope.

like image 188
agarcian Avatar answered Sep 18 '22 17:09

agarcian