I would like to know if systemFontSize in iOS app tableView is always the same for textLabel? This is are depening to style?
For example when I N
System Fonts are describe as following :
+ (CGFloat)labelFontSize;//Returns the standard font size used for labels.
+ (CGFloat)buttonFontSize;//Returns the standard font size used for buttons.
+ (CGFloat)smallSystemFontSize;//Returns the size of the standard small system font.
+ (CGFloat)systemFontSize;//Returns the size of the standard system font.
and you can change the font size without the font family like this :
cell.textLabel.font = [UIFont systemFontOfSize:14];