关于tableview的分割线隐藏问题
隐藏多余的分割线
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;