我想绕过我的 tableview 单元格的角落,使它们之间的差距更大。
我在 cellForRowAtIndexPath 中这样做:
static NSString* CellIdentifier = @"normal";
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if(cell == nil)
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
CALayer* layer = cell.layer;
[layer setCornerRadius:8.0f];
[layer setMasksToBounds:YES];
[layer setBorderWidth:2.0f];
通过调用 setBorderWidth,tableview 的滚动变得非常缓慢。没有它,它就像一个魅力。
那么,如何使单元格角舍入并更快地设置边框宽度?