Setting BOLD font on iOS UILabel
It’s a fishy business to mess with the font names. And supposedly you have an italic font and you wanna make it bold – adding simply @”-Bold” to the name doesn’t work. There’s much more elegant way: – (UIFont *)boldFontWithFont:(UIFont *)font { UIFontDescriptor * fontD = [font.fontDescriptor fontDescriptorWithSymbolicTraits:UIFontDescriptorTraitBold]; return [UIFont fontWithDescriptor:fontD size:0]; } size:0 means … Read more