关于tableView

1.去掉多余的分割线

self.tableV.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

2.去掉cell点击的高亮效果

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    //当手指离开某行时,就让某行的选中状态消失
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}

3.cell点击不变色

cell.selectionStyle = UITableViewCellSelectionStyleNone

4.cell内添加button 点击事件不响应
已解决:
UIButton 需要加在cell.contentView里,不能添加到contentView里面的某一个view里。否则不会有touch相应。

你可能感兴趣的:(关于tableView)