Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
743 views
in Technique[技术] by (71.8m points)

objective c - OpenSans font not working in iOS simulator

I'd like to use the OpenSans font on a UILabel, but it's not showing up in the iOS simulator. All that appears is the default system font. I have:

1) Added files to project + selected to copy to app folder.

2) Added to Info.plist.

info.plist

3) Xcode automatically added all fonts to my build phases folder.

4) Cleaned the project + built it again.

And it still doesn't show up! In my code, I have this:

self.itemPrice = [[UILabel alloc] initWithFrame:CGRectMake(230.0, 30.0, 75.0, 30.0)];
        self.itemPrice.adjustsFontSizeToFitWidth = YES;
        self.itemPrice.font = [UIFont fontWithName:@"OpenSans-ExtraBold" size:13.0f];
        self.itemPrice.textAlignment = NSTextAlignmentCenter;
        self.itemPrice.text = [NSString stringWithFormat:@"%@", [Formatters formatPrice:self.item.price]];
        [self.slidingDetailScrollView addSubview:self.itemPrice];

Anyone know what is causing this bizarre bug?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Fixed it, it was because of this minor error.

self.itemPrice.font = [UIFont fontWithName:@"OpenSans-Extrabold" size:13.0f];

Extrabold, not ExtraBold. I opened up Font Viewer, as recommended, and it showed that under PostScript Name.

I have now used #define's to place a font string name in there and use that throughout my application to avoid user error and literal strings in the middle of my code.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...