简体   繁体   中英

Can't set custom Font in UILabel (iPad app)

I load view from bundle and try to set custom font for label in it, but nothing changes. Outlets for this view and labels are in file's owner. Here's my code:

    self.rikView = (RIKMainToolbar*)[[[NSBundle mainBundle] loadNibNamed:@"RIKMainToolbarPort" owner:self options:nil] objectAtIndex:0];
    label.font = [UIFont fontWithName:@"PFDinTextCondPro-Medium.ttf" size:46];

What am I doing wrong?

UPD: I use this font in iPhone app, but there it's using for label in ViewController and sets in viewDidLoad function. And it works. So, I consider that problem is in loadWithNibName or in iPad.

Solved, thanks to @voromax. The problem was that labels' outlets belonged to file's owner. I've replace it with class and everything works)

我不知道我按照你的代码完全,但假设你正在做在initWithFrame的label.font分配RIKMainToolbarPort ,尝试移动到awakeFromNib方法。

Open the FontBook application, and select "view font info". Copy the post-script-name of your desired font, and use that in your Obj-C code

You are not using the correct font name. You seem to be using the font file's name, NOT the font name. For example, in my current app I have the file Opal_1.ttf. However, I use "Opal" as the font name.

[edit]Meh, check the example here: https://stackoverflow.com/a/1384206/855738 Again, I repeat, your font name is wrong . That's your problem... Why the down vote? :/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM