在设置了
_tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
之后,滚动的时候还是能看到分割线.
可以查看你的实现的heightForHeaderInSection和heightForFooterInSection返回值是否不为0.返回值置为0,分割线就不见了.
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 0;
}
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return 0;
}
网友评论