【发布时间】:2011-06-17 08:50:19
【问题描述】:
我正在寻找具有以下功能的 UILabel:
- 自动调整大小
- 支持特征线
- 简单的富文本格式(粗体, 斜体,超链接?)
我知道我可以自己做,但我猜应该已经有一个类似这样的开源项目,对吧?
【问题讨论】:
-
自动调整大小可以通过以下方式轻松完成:
CGSize textSize = [[myString text] sizeWithFont:[UIFont boldSystemFontOfSize:12.0]];myLabel.frame = CGRectMake(0 , 0, textSize.width, textSize.height);
标签: ios cocoa-touch uilabel