UILabel font size? UILabel font size? objective-c objective-c

UILabel font size?


I have modified the UILabel by following code:

label.font=[label.font fontWithSize:25];

Try this and see whether is it working in your case or not???


Check that your labels aren't set to automatically resize. In IB, it's called "Autoshrink" and is right beside the font setting. Programmatically, it's called adjustsFontSizeToFitWidth.


[label setFont:[UIFont systemFontOfSize:9]];

this works for me.