I have an app that I want to change the UILabels sizes without changing the font. I have tried the :
systemFontOfSize
property but it changes the font size and the font back to the standard ‘Helvetica’ font.
Just to note I have UILabels that are taking multiple fonts so I don’t want the:
[labelName setFont: [UIFont fontWithName: @”Font” size: labelName.font.pointSize]];
In the UIFont class reference, there is a method that is called
fontWithSize:. The description is:You can try that, or some of the other useful methods described. Hope that Helps!