美文网首页
关于tableView

关于tableView

作者: 阿黎转呀转 | 来源:发表于2016-04-26 23:30 被阅读54次

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

      本文链接:https://www.haomeiwen.com/subject/xelqrttx.html