我需要为分组的TableView设置样式。我找到了这个教程:http://www.raywenderlich.com/2033/core-graphics-101-lines-rectangles-and-gradients。但不幸的是,简单的版本(红色)对我不起作用。我正在使用ARC,因此有一行代码
cell.backgroundView = [[[CustomCellBackground alloc] init] autorelease];
cell.selectedBackgroundView = [[[CustomCellBackground alloc] init] autorelease];
不起作用。什么是上面代码的ARC版本。我在故事板中使用原型单元格。也许这就是它的原因。
答案 0 :(得分:1)
ARC不使用autorelease
,因此只需输入:
cell.backgroundView = [[CustomCellBackground alloc] init];
cell.selectedBackgroundView = [[CustomCellBackground alloc] init];