用公开按钮选择具有特定部分的单元格

时间:2013-06-11 08:56:46

标签: iphone ios objective-c

在单元格的附加图像中,只有“礼物”选项会突出显示,除了单元格的其余部分,并且“公开”按钮不在其标准位置。如何才能实现,只有特定选择的单元格,我还可以设置公开按钮的位置吗?还是按钮?

enter image description here

1 个答案:

答案 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属性