I'm trying to add a custom font to my iPhone app.
The font's name is: Susa-Regular.otf
I downloaded the font, installed it, dragged it over to xCode. Then I went into info.plist and added a row called "Fonts provided by application" and typed in Susa-Regular.otf
UILabel *myLabel = [[UILabel alloc]initWithFrame:frame]; [myLabel setFont:[UIFont fontWithName:@"Susa-Regular" size: 35]]; When I run the app, the font is still the same. I don't get any error messages either.
Any idea why it doesn't work?