NSAttributedString html render导致最新的OS 10.2.1出现性能问题 当我检查仪器的性能时,执行需要几秒钟,而其他请求需要几毫秒。与其他操作系统相比,此操作系统需要执行很多操作。
NSMutableAttributedString *attributedString = [[[NSAttributedString alloc] initWithData:data options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType}
documentAttributes:nil error:nil] mutableCopy];
我们在tableview单元格中使用了它。
解决此问题的解决方法是什么?