美文网首页
UITableView Tips

UITableView Tips

作者: u14e | 来源:发表于2017-07-14 15:00 被阅读5次

1.cell选中时,去掉选中的灰色背景

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}

或者直接让灰色背景不显示

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    ......
    // Configure the cell...
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    return cell;
}

2.取消cell之间的分隔线

self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

默认是UITableViewCellSeparatorStyleSingleLine

相关文章

  • UITableView Tips

    1.cell选中时,去掉选中的灰色背景 或者直接让灰色背景不显示 2.取消cell之间的分隔线 默认是UITabl...

  • UITableView Tips

    UITabelView是iOS开发中最常用, 也是最灵活的控件, 所以, 如何打造出更符合用户体验的tableVi...

  • UITableView Tips

    UITableView是开发中最常用的UI控件, 可是需求和系统的肯定有出入,UI给的设计肯定有不同的地方,这里就...

  • UITableView Tips

    1. 延长分割线 2. 不显示没内容的 Cell 3. 修改 Cell 小对勾的颜色 4. 去掉 SectionH...

  • iOS UITableView Header 不悬停的tip

    UITableView Header 不悬停的tips之一 也可以关注我的个人博客 利用contentInset向...

  • UITableView Tips 高级进阶

    1.cell 高度自适应 // 设置 estimatedRowHeight 大于零 self.tableView...

  • js 兼容 hack

    tips tips tips tips tips

  • UITableView的一个小Tips

    去掉某一行Cell的分割线: Cell.separatorInset = UIEdgeInsetsMake(0...

  • 欢迎来到TableView的天地

    swift UITableView UITableView继承于UIScrollView UITableView的...

  • iOS UITableView基础

    一、UITableView的创建 UITableView *tabelView = [[UITableView a...

网友评论

      本文标题:UITableView Tips

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