1

2 つのカスタム フォント (.otf) を読み込んで、アプリケーションの plist ファイルに配置し、Summary | にあることを確認しました。ビルド フェーズ | バンドル リソース セクションをコピーします。

ストーリーボードに UILabel を追加すると、ドロップダウンにそのフォントが表示されません。

すべてのラベルをプログラムでのみ行う必要がありますか? 例えば:

UILabel *myLabel;
[myLabel setText:@"Some Text"];
[myLabel setFont:[UIFont fontWithName:@"Gloucester MT Extra Condensed" size:24.0]];
4

1 に答える 1

1

As of now, yes that is the way it is. They will show up if you use rich text instead of plain text on your label but they don't survive the trip.

于 2012-12-12T08:37:14.710 に答える