
Hi Developers,
How to set font size of UILabel? I am creating label programmatically and I have to set the font size programatically. How I can set UILabel Font Size?
Thanks

HI,
Following example code can be used:
myLabel.font = [UIFont systemFontOfSize:12];
Thanks