2012年6月6日 星期三

iOS下rich text file RTF檔案顯示方式

RTF檔案可以直接用UIWebview顯示
方法如下
NSBundle *bundle = [NSBundle mainBundle];
NSURL *indexFileURL = [bundle URLForResource:@"about" withExtension:@"rtf"];
[webView loadRequest:[NSURLRequest requestWithURL:indexFileURL]];

不過這方法無法更改字型大小
預設字型又超大,最後還是回頭用html了
這文章只是一個犯錯記錄

沒有留言: