3

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

4

1 回答 1

0

首先,您需要导入 QuartzCore:

#import <QuartzCore/QuartzCore.h>

比,为了圆角,你需要做的就是:

myTableView.layer.cornerRadius = 5;

或者,如果对于单个单元格,在 cellForRowAtIndexPath 中:

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

添加:

cell.layer.cornerRadius = 5;
于 2013-06-22T19:47:58.790 回答