1张图片
作者
描述
使用CoreTextLabel,您可以在iOS(≥5.0)应用程序中绘制自定义字体和颜色的NSAttributedString或HTML。 also supports numberOfLines and truncation (NSLineBreakByTruncatingTail).
示例
CoreTextLabel* label = [[CoreTextLabel alloc] initWithFrame:frame];
label.html = htmlString;
[label sizeToFit];
[self.view addSubview:label];