Using UIAppearance, I am changing the Table View Cell's label colour. This works fine but it only colours the cells currently being seen. All the cell's out of the view (not being seen) are still the default colour (black).
In a summary, the method only changes the cell's currently being seen, not the cells out of view (scrolled out of view).
Here is my UIAppearance Code:
[[UILabel appearanceWhenContainedIn:[_textLabel class], nil]
setTextColor:[UIColor colorWithRed:(204.0f/255.0f) green:(204.0f/255.0f) blue:(204.0f/255.0f) alpha:1.0f]];