我正在自定义一些UITableViewCell
的背景,并且我希望在表视图的样式分组时默认设置相同的角半径。 [self.tableView.layer cornerRadius]
给我一个0,有人可以告诉我默认值是什么,或者我怎么能得到它?
答案 0 :(得分:0)
首先,您需要导入QuartzCore:
#import <QuartzCore/QuartzCore.h>
myTableView.layer.cornerRadius = 5;
对于单个单元格,OR ,在cellForRowAtIndexPath中:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
添加:
cell.layer.cornerRadius = 5;