隐藏多余的分割线
swift:
self.tableView?.tableFooterView = UIView()
oc :
self.tableView.tableFooterView = [[UIView alloc] init];
隐藏全部的分割线
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
隐藏多余的分割线
swift:
self.tableView?.tableFooterView = UIView()
oc :
self.tableView.tableFooterView = [[UIView alloc] init];
隐藏全部的分割线
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
转载于:https://www.cnblogs.com/Lovexiaohuzi/p/5640629.html