- UITableView中最后一個section的最后一個cell出現了分割線。(UITableViewStylePlain,UITableViewCellSeparatorStyleSingleLine)
解決辦法:
tableFooterView設置為一個0.1高度的UIView
_tableView.tableFooterView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, kScreenWidth, 0.1)];
_tableView.tableFooterView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, kScreenWidth, 0.1)];