gpt4 book ai didi

ios - 移除 UITableView 的单元格高亮颜色

转载 作者:IT老高 更新时间:2023-10-28 11:20:36 25 4
gpt4 key购买 nike

我想删除 uitableview 单元格选择的默认蓝色。我不想要任何选择颜色。我还没有创建自定义单元类。我通过在其上添加标签和按钮来自定义单元格。我试着做:

cell.selectioncolor = [UIColor clearcolor];

但它说这种方法已被弃用。

最佳答案

在 swift 中:

cell.selectionStyle = UITableViewCell.SelectionStyle.none

或者简单地说:

cell.selectionStyle = .none

关于ios - 移除 UITableView 的单元格高亮颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2787093/

25 4 0