I am working on a prototype interface and use the storyboard for this. Part of the prototype involves setting the UILabel element for the UITableView to a specific color. I would like to avoid having to manually repaint each tag in the storyboard.
I found that I can use:
[[UILabel appearanceWhenContainedIn:[UITableViewCell class], nil] setTextColor:[UIColor cyanColor]];
Change the appearance of labels in table cells. Is there a way to further refine this code, applicable only to tabular view labels? It currently modifies both textLabel and detailTextLabel UITableViewCell.
Thanks!
source share