How do I create an NSFont that is both Bold and Italic?

Posted by Arne Evertsson on Stack Overflow See other posts from Stack Overflow or by Arne Evertsson
Published on 2010-03-12T13:52:45Z Indexed on 2010/03/12 14:37 UTC
Read the original article Hit count: 164

Filed under:
|

To get a regular font: [NSFont fontWithName:@"Verdana" size:75];

To get a bold font: [NSFont fontWithName:@"Verdana-Bold" size:75];

To get an italic font: [NSFont fontWithName:@"Verdana-Italic" size:75];

To get a font that is bold and italic: ???

© Stack Overflow or respective owner

Related posts about cocoa

Related posts about fonts