iOS tableView 去除最後一行 分割線separator

  當tableViewStyle爲UITableViewStylePlain時,可是又按照group的方式進行了分組,就會出現最後一個section的最後一行出現分割線,如下有兩種解決方式:spa

1.將表格style修改成UITableViewStyleGroupcode

2.多加一個分區,設置多加的一個分區的表頭高度爲1便可blog

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    
    return self.data.count+1;
}

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{io

    return 1;table

}class

相關文章
相關標籤/搜索