I know how to set font with using fontWithName: and how to set systemFont, both bold and italic.
But how do I set a font with name if I want that to be italic?
myLabel.font = [UIFont fontWithName:@"Georgia" size:15];
or
myLabel.font = [UIFont italicSystemFontOfSize:15];
I want an italic Georgia, how?
you must know the variant name, something like “GeorgiaIT” or “GeorgiaItalic”.