gpt4 book ai didi

iphone - 更改单个 UITableViewCell 的 UITableView seperatorColor

转载 作者:行者123 更新时间:2023-12-03 18:29:58 24 4
gpt4 key购买 nike

我有一个 UITableView,它使用各种自定义 UITableViewCells

我希望能够让这些表格单元格之一以与其他单元格不同的分隔符颜色显示。

我知道tableview.seperatorColor会更新整个tableView。是否有我缺少的单元格特定属性或其他方法来执行此操作?

感谢您的任何提示。抱歉,如果我只是在 UITableViewCell 类中的某些内容上留出间距。

最佳答案

免责声明 - 在我的具体情况下,这当时对我有用。它不能保证工作,它似乎不再工作,我现在建议您子类化 UITableViewCell

在希望在分组 UITableView 中跨组/部分以不同方式设置 UITableView.separatorColor 时,看到了这篇文章。

您不一定需要子类化UITableViewCell。您可以尝试在每次调用 tableView:cellForRowAtIndexPath: 时设置 tableView.separatorColor

例如,如果您希望分隔符在第一部分中以默认颜色可见,在第二部分的第一行/单元格中可见,并且在第二部分的其余行中不可见,您可以执行以下操作:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
switch (indexPath.section) {
case 0:
tableView.separatorColor = nil;
break;
case 1:
switch (indexPath.row) {
case 0:
tableView.separatorColor = nil;
break;
case 1:
tableView.separatorColor = [UIColor clearColor];
break;
default:
break;
}
break;
default:
break;
}

关于iphone - 更改单个 UITableViewCell 的 UITableView seperatorColor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3711855/

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