gpt4 book ai didi

ios - 是否可以为 UITableView 中的每个部分设置不同的分隔符颜色?

转载 作者:行者123 更新时间:2023-11-28 17:50:42 26 4
gpt4 key购买 nike

我正在尝试为每个部分设置不同的分隔符颜色。

这可能吗?有什么办法可以实现吗?

我目前在 Objective-C 中工作,我想用这段代码改变整个 UITableView 分隔符的颜色:

[self.tableView setSeparatorColor:[UIColor clearColor]];

等待您的答复

最佳答案

使用

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
}

关于ios - 是否可以为 UITableView 中的每个部分设置不同的分隔符颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38971617/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com