我正在尝试为每个部分设置不同的分隔符颜色。
这可能吗?有没有办法实现这个目标?
我目前正在使用Objective-C,我想用这段代码更改整个UITableView分隔符颜色:
[self.tableView setSeparatorColor:[UIColor clearColor]];
等待你的回答
答案 0 :(得分:0)
使用
cell.separatorInset = UIEdgeInsetsMake(0, tableView.frame.width, 0, 0)
真实示例
switch dataSource[indexPath.section] {
case .withoutSeparator(_, var elements):
let cell: ServiceCell = tableView.dequeueReusableCell(for: indexPath)
cell.separatorInset = UIEdgeInsetsMake(0, tableView.frame.width, 0, 0)
}
return cell
case let .withSeparator(_, elements, _):
let cell: ZoneCell = tableView.dequeueReusableCell(for: indexPath)
return cell
}