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 应用程序设置默认字体?


基础教程推荐
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01