我使用UILabel
'sattributedText
来加载 HTML 字符串,例如:
<p style="text-align: center;">sometext</p>
我用它NSParagraphStyle
来改变line-height
这个 HTML 的所有元素。
NSMutableParagraphStyle *paragraphStyle = [NSMutableParagraphStyle new];
paragraphStyle.minimumLineHeight = 20; // line-height: 20;
[attributedString addAttribute:NSParagraphStyleAttributeName
value:paragraphStyle
range:NSMakeRange(0, attributedString.length)];
有用。但它将重置text-align
为左。