如何向 Xcode 3.2 添加新字体?
请告诉我如何向 iphone xcode3.2 添加新字体。
please tell me how to add new font to iphone xcode3.2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
请告诉我如何向 iphone xcode3.2 添加新字体。
please tell me how to add new font to iphone xcode3.2.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
此功能未内置到 iOS 中的 UILabel/UIFont 中3.2.但是您可以使用第三方解决方案: FontLabel
在 iOS 3.2+ 中,有 UIAppFonts plist 键!
只需在使用它之前执行此操作:将字体文件(例如
myfont.ttf
)添加到项目中,然后像这样编辑 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:上述方法在 xcode 3.2 中对我有用!谢谢!:
第 1 步:将字体拖到项目中(字体名称中不要有空格可能是个好主意)
第 2 步:在您的 info.plist 文件中添加一行(如上所示)以输入您的字体。
第 3 步:在 viewDidLoad() 中或在设置标签的任何位置输入代码:
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:
我是通过以下方式完成的:
将字体类型添加到 Xcode :在 XIB 下,转到字体设置 -> >管理字体
将字体添加到标签:
UIFont *myFont = [UIFont fontWithName:@"myfont" 大小:12];
label.font = myFont;
希望有帮助
I did it with the following way:
Add the font type to the Xcode : Under the XIB, go the font setting -> manage font
Add the font to the label:
UIFont *myFont = [UIFont fontWithName:@"myfont" size:12];
label.font = myFont;
Hope it help
但在 xcode 5 中,
xcode 首选项
->字体和颜色
。textField
中的T
按钮。打开所有颜色的列表,然后单击左下角的
设置按钮
,然后转到管理字体
,在这里选择
所有字体
,然后添加您自己的字体单击加号按钮
来ttf文件
您的字体将被添加。
But in xcode 5
xcode preferences
->Fonts and colors
.T
button in thetextField
of Font.A list of all colors open then click on
setting button
in bottom left corner and go tomanage fonts
Here select
All fonts
and then add your ownttf file
by clicking onplus button
and your Font will be added.