Search code examples
uitableviewxamarin.iosios7appearance

How do I set the UITableViewCell DetailText Color in iOS 7 using Appearance?


In a Value1 style UITableViewCell the DetailText is gray, I'd like it to be black. How can I control the color via the appearance proxy?

Thank you.


Solution

  • Can't you just do this ?:

    DetailTextLabel.TextColor = UIColor.Black;