gpt4 book ai didi

IOS uitableview单元格选中背景

转载 作者:可可西里 更新时间:2023-11-01 06:19:03 25 4
gpt4 key购买 nike

我的 IOS 应用程序中有一个 UItableview,其中包含一些信息。我使用以下代码将选定的背景颜色更改为 clearcolor:

UIView *bgColorView = [[UIView alloc] init];
[bgColorView setBackgroundColor:[UIColor clearColor]];
[cell setSelectedBackgroundView:bgColorView];
[bgColorView release];

单元格中有文本和 2 个图像,我使用 CGRectMake 构建了它。但是当我选择并按住表格单元格时,图像会消失在看起来像白色背景的后面。

enter image description here

如您所见,我拿着“Dacnusa sibrica”细胞,我该如何解决这个问题?

最佳答案

如果你想禁用单元格的蓝色选择你也可以设置单元格的选择模式而不是修改背景:

cell.selectionStyle = UITableViewCellSelectionStyleNone

这只是在点击单元格时禁用蓝色选择,但仍允许选择单元格(并因此由代码处理)。

关于IOS uitableview单元格选中背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8429164/

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