我的应用需要从 URL 读取 .rtf 文件。我要把它读成
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@.rtf",_URL]];
NSError* error;
NSString *content = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:&error];
现在,当我在 UITextView 中加载此文本时。它给了我带有 { 和 / 字符的标签以及原始文件文本。请指导我如何阅读不包含任何括号和 html 数据的正确文本。