在一个UITableViewCell调光tintColor(Dimming a tintColor

2019-10-18 15:58发布

这里是打开一个模式(“添加成分”)一个UITableViewCell:

我设置的标签颜色相匹配的应用程序的tintColor:

cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
cell.textLabel.text = @"Add Ingredients...";
cell.textLabel.textColor = [self.view tintColor];

如何暗淡文本颜色时, UIAlertViewUIActionSheet提出? 此行为是默认按钮和其他控制,而不是一个单元格的文本标签。

我发现tintAdjustmentMode和tintColorDidChange引用,但不知道如何可以使用。

或者我应该加入一个按钮,我的手机? 我以前使用这种方法的经验是不是最优的 - 有侧efffects与响应。

Answer 1:

我相信你是正确的。 你应该能够覆盖该tintColorDidChange方法在CustomUITableViewCell。

http://www.qubop.com/ios7.pdf



文章来源: Dimming a tintColor on a UITableViewCell