标签: iphone ios uitableview cornerradius
我有一个tableview,它有很多部分。每个部分只有一个单元格。我想知道我是否可以将细胞的角半径设置为我想要的。有没有办法做到这一点?
答案 0 :(得分:3)
UITableViewCell.layer是一种类CALayer,CALayer类有一个名为cornerRadius的属性。所以你将细胞的角半径设置为休闲:
[cell.layer setCornerRadius:3.0];