我在标签中添加了HTML文字
self.label.attributedText = [[NSAttributedString alloc] initWithData:body.toData options:@{NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType}
documentAttributes:nil
error:nil];
问题在于此HTML中有0到n <a href>
个标记。我必须使用NSLinkAttributeName
使这个链接可以点击,但我不知道如何识别attributedText
属性中的链接。