Set a default font for whole iOS app?(为整个 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 应用程序设置默认字体?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为整个 iOS 应用程序设置默认字体?


- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- Android - 拆分 Drawable 2022-01-01