0

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.

Stephane Delcroix
  • 16,134
  • 5
  • 57
  • 85
Neal
  • 9,487
  • 15
  • 58
  • 101
  • The UITableViewCell doesn't support the appearance proxy.. You could subclass it yourself and add the required methods but I have no knowledge on how to do that in monotouch – liamnichols Oct 09 '13 at 20:35

1 Answers1

0

Can't you just do this ?:

DetailTextLabel.TextColor = UIColor.Black;
Stephane Delcroix
  • 16,134
  • 5
  • 57
  • 85