我正在完成将rtf文件更改为html文件的任务。但是,如何将.html文件读取到NSTextView或其他Object.I测试以下API在读取HTML文件时效果很好。
NSTextView *showHtml;
[showHtml readRTFDFromFile:[[NSBundle mainBundle] pathForResource:@"test" ofType:@"html"]];
对象showHtml可以像浏览一样显示Html文件。
但API readRTFDFromFile描述只能读取rtf或rtfd文件。
是否有任何API或方法可以在xib中显示Html文件。
我也测试了API:
[[NSAttributedString alloc] initWithHTML:(NSData *) data documentAttributes:(NSDictionary **) docAttributes],
setAttributedStringValue:(NSAttributedString *) aAttributeString
但除了字符串外,它无法显示归属。
感谢您的回复。