我无法在UItableviewCell中更改默认的Accessory Type->Disclosure Indicator view
颜色。
当我更改tableviewcell色调颜色时,它会更改以下附件类型视图颜色。
但我不能改变“披露指标”的颜色。
除了在附件视图中设置图像外,您还有其他选项可以更改“Disclosure Indicator”颜色吗?
截图:
答案 0 :(得分:1)
您可以将图片放入accessoryView
并解决问题。
示例代码
将此代码放在cellForRowAtIndexPath
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 11, 22, 22)];
imgView.contentMode = UIViewContentModeScaleAspectFit;
imgView.image = [UIImage imageNamed:@"IconMore"];
cell.accessoryView = imgView;
答案 1 :(得分:0)