在用到列表的时候经常由于数据源少的问题,底部会留下大量的空白cell以及万恶的分割线。之前的方法是根据数据源动态的调整tableview的高的,以及 scrollEnabled 属性。这样处理起来就比较麻烦。
get新思路
UIView * footer = [[UIView alloc] initWithFrame:CGRectZero];
self.tableView.tableFooterView = footer;
在用到列表的时候经常由于数据源少的问题,底部会留下大量的空白cell以及万恶的分割线。之前的方法是根据数据源动态的调整tableview的高的,以及 scrollEnabled 属性。这样处理起来就比较麻烦。
UIView * footer = [[UIView alloc] initWithFrame:CGRectZero];
self.tableView.tableFooterView = footer;
本文标题:UITableView隐藏多余cell分割线
本文链接:https://www.haomeiwen.com/subject/ipibpttx.html
网友评论