在单元格的附加图像中,只有“礼物”选项被突出显示,除了单元格的其余部分,而且披露按钮不在其标准位置。它是如何实现的,一个只有特定选择的单元格,我也可以设置披露按钮的位置吗?还是按钮?
问问题
63 次
1 回答
0
如果您没有使用任何背景图像,请TableViewCell
使用以下委托方法UITableView
:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.backgroundColor = [UIColor redColor];
}
如果您使用的是背景图片,请TableViewCell
在以下位置使用cellForRowAtIndexPath
:
UIImageView *selBGView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"urimage.png"]];
cell.selectedBackgroundView = selBGView;
对于披露按钮的位置,您必须从 IB 文件中设置 autoResize 属性
于 2013-06-11T09:13:32.133 回答