UIKit - UITableView

隐藏多余的分割线

self.tableView.tableFooterView = [UIView new];

UITableViewCell 自适应高度

  • tableView 使用 xib 搭建可设置 cell 的 高度
  • cell 使用 xib 搭建无法设置 cell 的高度

Eg : UILabel 如何自适应高度
cell 中的 label 添加四周约束,不设置固定高度,numberofline = 0

  1. 代理方法实现 (xib 和 storyboard)
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return UITableViewAutomaticDimension;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return UITableViewAutomaticDimension;
}
  1. 非代理方法实现 (xib)
self.tableView.estimatedRowHeight = 30;// estimate 大概
self.tableView.rowHeight = UITableViewAutomaticDimension;// Dimension 尺寸面积

IB 注册方法

  1. 注册 xib 和 storyboard
[tableView registerNib:[UINib nibWithNibName:@"" bundle:[NSBundle mainBundle]]forCellReuseIdentifier:@""];
[tableView dequeueReusableCellWithIdentifier:@"" forIndexPath:[NSIndexPath new]];// iOS 6.0
[tableView dequeueReusableCellWithIdentifier:@""];// iOS 5.0
  1. 非注册 storyboard
[tableView dequeueReusableCellWithIdentifier:@""]; //非注册方法不用indexPath
if (cell == nil) {
    cell = [[[NSBundle mainBundle]loadNibNamed:@"" owner:nil options:nil] firstObject];
}   

静态 cell (storyboard)

First Step : 先拖一个新的 UIView 与 File's Owner 的 view 并列关系,注意是并列关系,不是 subView
Second Step : 把刚刚新的 view 的 Simulated Metrics 的 Size 设置成 Freeform
Third Step : 把该 view 拖入 tableView ,然后该 view 会自动作为 tableView 的 tableHeaderView OR tableFooterView

去掉 UITableView 中 section 和 headerview 粘性

  • 用于分区尾只需要修改 edge.bottom
// 去掉UItableview headerview黏性(sticky)
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    CGFloat sectionHeaderHeight = 40;
    if (scrollView.contentOffset.y<=sectionHeaderHeight&&scrollView.contentOffset.y>=0) {
        scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0);
    }  *// 逐渐下滑, 大小逐渐变小
    else if (scrollView.contentOffset.y>=sectionHeaderHeight) {
        scrollView.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, 0, 0);
    }

    if (scrollView.contentOffset.y >= scrollView.contentSize.height - SCREEN_HEIGHT - 50) {
        scrollView.contentInset = UIEdgeInsetsMake(0, 0, 0, 0);
    }
}

HeaderView AutoLayout

CGFloat height = [self.headerView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height; // 获取高度
CGRect frame = self.headerView.frame;
frame.size.height = height;
self.headerView.frame = frame;
self.tableView.tableHeaderView = self.headerView;

MJRefresh

使用 UITableViewAutomaticDimension 来进行 cell 自适配高度时候,用 MJRefresh , cell 上拉会无限刷新。

- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return UITableViewAutomaticDimension;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return UITableViewAutomaticDimension;
}

解决方法:直接赋值,不使用代理方法

关于iOS11及以上版本上拉加载更多会出现跳跃式bug

新增一条自适应 Cell 并滚动到最后一行

 // 使用自适应的高度 cell 必须使用延迟才不会有滚动跳动的问题。
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
    [self scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:self.dataArray.count - 1 inSection:0] atScrollPosition:UITableViewScrollPositionBottom animated:YES];
});

iOS 11 往下偏移 20

iOS 11 中 UITableView下移问题

if (@available(iOS 11.0, *)) {
 self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
} else {
    // Fallback on earlier versions
 self.automaticallyAdjustsScrollViewInsets = NO;
}

可以上拉,不可以下拉

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    scrollView.bounces = scrollView.contentOffset.y > 0;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 版权声明:未经本人允许,禁止转载. 1. TableView初始化 1.UITableView有两种风格:UITa...
    萧雪痕阅读 7,910评论 2 10
  • 概述在iOS开发中UITableView可以说是使用最广泛的控件,我们平时使用的软件中到处都可以看到它的影子,类似...
    liudhkk阅读 12,968评论 3 38
  • #pragma mark someValueAboutTableView 1.tableView的样式:UITab...
    潇岩阅读 4,565评论 0 0
  • UITableView内置了两种样式:UITableViewStylePlain,UITableViewStyle...
    Windv587阅读 3,038评论 0 1
  • UITableView UITableView内置了两种样式:UITableViewStylePlain,UITa...
    _凌浩雨阅读 4,294评论 0 1