iOS 中的自定义字体
好吧,
从 3.2 开始使用自定义字体非常简单:
在资源包中加载字体,在 plist 中指定它的名称,然后就可以在文本字段中使用 [textField setFont...]。
问题是,我想替换应用程序每个部分的字体,比如导航栏,所以它变得复杂,因为似乎我必须用自定义组件替换每个组件才能设置字体。
有没有什么方法可以让这该死的东西知道我想要一步一步用自定义字体替换默认字体?不是每个酒吧项目都有,所以...
谢谢!
Ok,
using a custom font since 3.2 is pretty straightforward:
Load the font in resources bundle, specify it's name in plist and there you go, you can use is in a text field with [textField setFont...].
The thing is, i want to replace the font in every part of my app, say the navigation bar so it gets complicated, because it seems i have to replace every component with a custom one in order to set the font.
Is there any way to let the bloody thing know that i want the default font replaced with a custom one, in one step? Not in every bar item, and so...
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许是
UIFont
上的一个类别,它重新定义以返回您的自定义字体。
正如乔纳森在评论中指出的那样,它也可能会改变状态栏字体(我目前无法验证)。我不知道苹果是否会接受这种行为(重新定义方法是可以的,但修改默认 UI 不是恕我直言)。
子类化
UIFont
是不够的,因为默认情况下标签和其他标签仍然会使用 UIFont 类。Maybe a category on
UIFont
which redefinesto return your custom font.
As pointed by Jonathan in the comments, it may also change the status bar font (I can't verify at the moment). I don't know if Apple would accept this behavior (redefining methods is OK but modifying the default UI isn't IMHO).
Subclassing
UIFont
wouldn't be sufficient because labels and others would still use the UIFont class by default.