gpt4 book ai didi

ios - 如何在我的单元格中更改附件类型 -> 披露指示器颜色?

转载 作者:行者123 更新时间:2023-11-29 11:34:52 24 4
gpt4 key购买 nike

我无法在我的 UItableviewCell 中更改默认的 Accessory Type->Disclosure Indicator view 颜色。

当我更改 tableviewcell 色调颜色时,它会更改以下附件类型 View 颜色。

  • 详细披露
  • 详情
  • 复选标记

但我无法更改“披露指示器”的颜色。

除了在附件 View 中设置图像之外,您是否还有其他更改“披露指示器”颜色的选项?

截图:

单元格:
cell

Xcode 菜单:
xcodemenu

最佳答案

你可以把你的图片放在 accessoryView 中,你的问题就解决了。

示例代码将此代码放入 cellForRowAtIndexPath

UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 11, 22, 22)];
imgView.contentMode = UIViewContentModeScaleAspectFit;
imgView.image = [UIImage imageNamed:@"IconMore"];
cell.accessoryView = imgView;

enter image description here

关于ios - 如何在我的单元格中更改附件类型 -> 披露指示器颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50272026/

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