如何向 Xcode 3.2 添加新字体?

发布于 2024-09-11 21:41:32 字数 37 浏览 2 评论 0原文

请告诉我如何向 iphone xcode3.2 添加新字体。

please tell me how to add new font to iphone xcode3.2.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

情释 2024-09-18 21:41:32

此功能未内置到 iOS 中的 UILabel/UIFont 中3.2.但是您可以使用第三方解决方案: FontLabel

在 iOS 3.2+ 中,有 UIAppFonts plist 键

只需在使用它之前执行此操作:将字体文件(例如 myfont.ttf)添加到项目中,然后像这样编辑 Info.plist:

info.plist

This functionality isn't built into UILabel/UIFont in iOS < 3.2. But there is a third-party solution you can use: FontLabel

In iOS 3.2+, there's the UIAppFonts plist key!

Just do this before using it: add your font file (such as myfont.ttf) to your project, then edit the Info.plist like so:

info.plist

勿忘初心 2024-09-18 21:41:32

上述方法在 xcode 3.2 中对我有用!谢谢!:

第 1 步:将字体拖到项目中(字体名称中不要有空格可能是个好主意)
第 2 步:在您的 info.plist 文件中添加一行(如上所示)以输入您的字体。
第 3 步:在 viewDidLoad() 中或在设置标签的任何位置输入代码:

 UIFont *myFont = [UIFont fontWithName:@"secondbreakfast" size:40];
 myLabel.font = myFont;

The above methods worked for me in xcode 3.2! Thanks!:

step 1: drag your font into your project (prob a good idea to not have spaces in the font name)
step 2: add a row to your info.plist file like shown above to enter your font.
step 3: in, viewDidLoad() or wherever you are setting your label, enter code:

 UIFont *myFont = [UIFont fontWithName:@"secondbreakfast" size:40];
 myLabel.font = myFont;
那片花海 2024-09-18 21:41:32

我是通过以下方式完成的:

  1. 将字体类型添加到 Xcode :在 XIB 下,转到字体设置 -> >管理字体

  2. 将字体添加到标签:

    UIFont *myFont = [UIFont fontWithName:@"myfont" 大小:12];
    label.font = myFont;

希望有帮助

I did it with the following way:

  1. Add the font type to the Xcode : Under the XIB, go the font setting -> manage font

  2. Add the font to the label:

    UIFont *myFont = [UIFont fontWithName:@"myfont" size:12];
    label.font = myFont;

Hope it help

血之狂魔 2024-09-18 21:41:32

但在 xcode 5 中,

  1. 转到 xcode 首选项 -> 字体和颜色
  2. 然后点击字体的textField中的T按钮。

打开所有颜色的列表,然后单击左下角的设置按钮,然后转到管理字体

在这里选择所有字体,然后添加您自己的字体单击加号按钮ttf文件
您的字体将被添加。

But in xcode 5

  1. Go to xcode preferences -> Fonts and colors.
  2. Then click on T button in the textField of Font.

A list of all colors open then click on setting button in bottom left corner and go to manage fonts

Here select All fonts and then add your own ttf file by clicking on plus button
and your Font will be added.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文