为整个 iOS 应用程序设置默认字体? [英] Set a default font for whole iOS app?

查看:37
本文介绍了为整个 iOS 应用程序设置默认字体?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个自定义字体,我想将其用于在我的应用程序、标签、文本视图等中显示文本的所有内容.

I have a custom font I want to use for everything displaying text in my app, labels, text views etc.

有没有办法为整个应用设置默认字体(标签默认使用 SystemFont)?

Is there a way to set the default font (labels by default use SystemFont) for the whole app?

推荐答案

在 iOS 5 中使用 UIAppearance 代理似乎是可能的.

It seems to be possible in iOS 5 using the UIAppearance proxy.

 [[UILabel appearance] setFont:[UIFont fontWithName:@"YourFontName" size:17.0]];

这会将字体设置为您应用中所有 UILabel 的自定义字体.您需要为每个控件(UIButton、UILabel 等)重复此操作.

That will set the font to be whatever your custom font is for all UILabels in your app. You'll need to repeat it for each control (UIButton, UILabel, etc.).

请记住,您需要将 UIAppFonts 值放在 info.plist 中,并包含您要包含的字体的名称.

Remember you'll need to put the UIAppFonts value in your info.plist and include the name of the font you're including.

这篇关于为整个 iOS 应用程序设置默认字体?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆