UILabel如何看起来像UITableViewStyleGrouped?

时间:2011-05-18 12:22:45

标签: iphone uilabel

我的UILabel怎么能像TableView的UITableViewStyleGrouped一样?

1 个答案:

答案 0 :(得分:5)

在源文件的顶部:

#import <QuartzCore/QuartzCore.h>

设置标签:

label.backgroundColor = [UIColor whiteColor];
label.layer.cornerRadius = 10.0;
label.layer.borderColor = [UIColor blackColor].CGColor;
label.layer.borderWidth = 1.0;