IOS UITableView的分隔线多出问题

来源:互联网 发布:青山预算软件 编辑:程序博客网 时间:2024/05/16 18:49
如题,有时显示UITableView多出部分在页面时,下面会显示处多出的行,

此时应该在UITableView初始化时设置为Group

    if (_tableView == nil) {        _tableView = [[UITableView alloc] initWithFrame:self.bounds style:UITableViewStyleGrouped];        _tableView.backgroundColor = [UIColor clearColor];    }    

  

0 0