I have the following code in my didFinishLaunchingWithOptions
function :
[[[UITableViewCell appearance] textLabel]setFont:[UIFont fontWithName:@"someFont" size:12]];
But for some reason this does not change the text in my table cells.
If in the table delegate function cellForRowAtIndexPath
I add
cell.textLabel.font = [UIFont fontWithName:@"someFont" size:12];
It does change the font to my desired one.
Any ideas?