UITableView在UITableViewStylePlain样式,若行数不够填满整个屏幕时,无数据的Cell也会有分割线。根据网络资料,有几种处理方式,在此记录一个自己验证过的方案。
思路:创建一个空白的UIView,设置其背景色为表格背景色,然后将其赋值给UITableView的footerView属性。
示意代码:
UIView *maskView = [[UIView alloc] init]; maskView.backgroundColor = [UIColor whiteColor]; self.tableView.tableFooterView = maskView;
时间: 2024-12-22 07:22:32