gpt4 book ai didi

ios - 使用 UIAppearance 更改选定的单元格背景颜色

转载 作者:行者123 更新时间:2023-12-01 17:31:03 27 4
gpt4 key购买 nike

我需要为我的应用程序中的所有单元格更改选定的单元格背景颜色。据我所知,有一种方法可以使用 UIAppearance为此目的的协议(protocol)。是否可以通过 UITableViewCell 的类别来实现这一点? ?

最佳答案

使用外观代理,您可以为所有单元格着色。不知道您是否可以针对特定类别。

要进行着色,请将以下代码放入您的 AppDelegate.m 文件中:

[self customCellBackground];- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions
最后的某个地方:

- (void)customCellBackground {
UIView *cellBackgroundView =[[UIView alloc] init];
cellBackgroundView.backgroundColor = [UIColor blackColor];
[[UITableViewCell appearance] setSelectedBackgroundView:cellBackgroundView];}

关于ios - 使用 UIAppearance 更改选定的单元格背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22476819/

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