I want to set the selected label to appear bold without implementing the font family-bold version. Ex:- the default way to set bold is as follows
UIFont *myFont = [UIFont fontWithName:@"Helvetica-BoldOblique"
size:[UIFont systemFontSize]];
But i want to change the font weight(i.e BOld, Italic or Underline) only. without calling the "fontWithName".
Thanks in advance