I have a custom UITableViewCell
with a UILabel
and a UITextView
in it.
I want the text for both of these to appear white when the user highlights the UITableViewCell
. It's obviously very simple to set the highlightedTextColor
of the UILabel
, but the UITextView
doesn't seem to have any similar type of property. Am I going to have to manually change the color of the UITextView
whenever the cell becomes highlighted/unhighlighted or is there an easier way of accomplishing this?
Thanks!