仅仅使用UILabel + UIView就可以在iOS上实现类似的功能吗?
我试过在UITableView中使用UIWebView,但它太慢了。
That style using UILabel ? http://cl.ly/f9d4f776171e1cb6faaf/content
发布于 2010-08-11 18:44:42
像这样的东西
lbl.backgroundColor = [UIColor redColor];
lbl.textColor = [UIColor whiteColor];假设lbl是一个UILabel对象。
发布于 2010-08-11 19:23:27
lbl.font = [UIFont boldSystemFontOfSize:20];https://stackoverflow.com/questions/3457420
复制相似问题