如题,有时显示UITableView多出部分在页面时,下面会显示处多出的行,
此时应该在UITableView初始化时设置为Group
if (_tableView == nil) {
_tableView = [[UITableView alloc] initWithFrame:self.bounds style:UITableViewStyleGrouped];
_tableView.backgroundColor = [UIColor clearColor];
}