iOS 去掉多余的cell分割线

去掉对于cell显示的分隔线
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
tableView.separatorColor = [UIColor clearColor];
tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
tableView.tableFooterView = [UIView new];

你可能感兴趣的:(iOS 去掉多余的cell分割线)