描述:
當(dāng)UILabel加載富文本的時候,富文本中有圖片卿嘲,圖片的大小超出屏幕的寬度時,可以調(diào)整圖片的大小
//遍歷富文本得到NSTextAttachment類砾莱,改變圖片的大小
[self.descriptionString enumerateAttribute:NSAttachmentAttributeName inRange:NSMakeRange(0, self.descriptionString.length) options:0 usingBlock:^(id _Nullable value, NSRange range, BOOL * _Nonnull stop) {
if ([value isKindOfClass:[NSTextAttachment class]]) {
NSTextAttachment * attachment = value;
CGFloat height = attachment.bounds.size.height;
attachment.bounds = CGRectMake(0, 0, kScreenWidth-20, height);
}
}];