I am having a app wherein I am I am setting font for a label programmaticaly as below
[label setFont:[UIFont fontWithName:fontName size:[fontSize intValue]]];
wherein fontName is a variable that hold font name such as "Heveletica"
and fontSize will hold the size for the font. This works fine for me.
Now I want to make this text "Bold" how can I do that?
boldSystemFontOfSize
works for system font. How can I achieve same for user defined fonts.
Thanks.