For a project I need to display the contents of a RTF file on an iPad. After some searches I found that you can load the RTF file in an UIWebView. However when I do this, the content of the file shows up, but its missing table borders, and images. Bold / Italic / Underlined text works fine.
The code I use to display the file:
NSURL *url = [[NSBundle mainBundle] URLForResource:@"A" withExtension:@".rtf"];
NSLog(@"URL: %@", url);
NSURLRequest *req = [NSURLRequest requestWithURL:url];
[_webView loadRequest:req];
The RTF file:
https://dl.dropbox.com/u/4966217/A.rtf
How can I display the images and table borders in my app?