See following code carefully. Because it works perfectly. Try to add in your application. it will work
- (void)viewDidLoad {
[super viewDidLoad];
// title la
Here is a list of fonts available in the iPhone OS. It would seem Arial Black is not among them.
Try @"Arial-BoldMT"
Besides, you could always make yourself a list of available fonts:
for( NSString *familyName in [UIFont familyNames] ) {
for( NSString *fontName in [UIFont fontNamesForFamilyName:familyName] ) {
NSLog(@"%@", fontName);
}
}
There are plenty of font apps in the App Store to see all the fonts - one of which is iFonts, an app I developed so I could email the list of fonts to someone else on the team.