UI基础_UITableView

UITableViewStylePlain/Grouped

  • UITableViewStylePlain

    1.默认的类型,有sectionHeaderView时,自带header在顶部停留的效果。
    2.section之间没有间距

3.tableView去掉多余分割线的解决方法:

self.tableView.tableFooterView = [UIView new];

4.取消header停留的方法:

 - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    CGFloat headerHeight = 40;//自己设置的header高度
    if (scrollView.contentOffset.y <= headerHeight && scrollView.contentOffset.y >= 0) {
        scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0);
    } else if (scrollView.contentOffset.y >= headerHeight) {
        scrollView.contentInset = UIEdgeInsetsMake(-headerHeight, 0, 0, 0);
    }
}
  • UITableViewStyleGroup

    1.section之间有一定的默认高度
    2.想去掉中间的间隔,可以设置高度为0.01,设置为0无法取消间隔

- (CGFloat )tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
    return 0.01;
}

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
    return 0.01;

优化UITableViewCell

收集了部分写优化UITableViewCell的不错的文章:
1.优化UITableViewCell高度计算的那些事:
http://blog.sunnyxx.com/2015/05/17/cell-height-calculation/
2.UITableViewCell的估算机制与高度计算:
http://www.jianshu.com/p/5d3954188ea6/comments/802675


针对tableView增删的注意事项:

    //需要添加beginUpdates
[self.tableView beginUpdates];
        [self.tableView insertRowsAtIndexPaths:@[ [NSIndexPath indexPathForRow:self.messages.count - 1 inSection:0] ] withRowAnimation:UITableViewRowAnimationNone];
        [self.tableView endUpdates];
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值