在做iOS应用开发时,经常遇到tableView数据源为空,或者数据条数很少,空白位置也会出现cell的分割线,看着挺烦人的。
如下:
给footerView和headerView添加一个空白的UIView对象就好了
- 实例
UIView *view =[ [UIView alloc]init];
view.backgroundColor = [UIColor clearColor];
[tableView setTableFooterView:view];
[tableView setTableHeaderView:view];