在单元格的附加图像中,只有“礼物”选项会突出显示,除了单元格的其余部分,并且“公开”按钮不在其标准位置。如何才能实现,只有特定选择的单元格,我还可以设置公开按钮的位置吗?还是按钮?
答案 0 :(得分: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属性