分组UITableView角半径默认值

时间:2013-06-22 17:10:33

标签: ios default rounded-corners uitableview

我正在自定义一些UITableViewCell的背景,并且我希望在表视图的样式分组时默认设置相同的角半径。 [self.tableView.layer cornerRadius]给我一个0,有​​人可以告诉我默认值是什么,或者我怎么能得到它?

1 个答案:

答案 0 :(得分:0)

首先,您需要导入QuartzCore:

#import <QuartzCore/QuartzCore.h>

但是,为了使某些事物的角落四舍五入,你需要做的就是:

myTableView.layer.cornerRadius = 5;
对于单个单元格,

OR ,在cellForRowAtIndexPath中:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

添加:

cell.layer.cornerRadius = 5;