iOS 中的自定义字体

发布于 2024-10-25 20:12:27 字数 255 浏览 1 评论 0原文

好吧,

从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不如归去 2024-11-01 20:12:27

也许是 UIFont 上的一个类别,它重新定义

+ (UIFont *)systemFontOfSize:(CGFloat)size {
    return [self fontWithName:@"YourFontName" size:size];
}

+ (UIFont *)boldSystemFontOfSize:(CGFloat)size {
    return [self fontWithName:@"YourBoldFontName" size:size];
}

以返回您的自定义字体。

正如乔纳森在评论中指出的那样,它也可能会改变状态栏字体(我目前无法验证)。我不知道苹果是否会接受这种行为(重新定义方法是可以的,但修改默认 UI 不是恕我直言)。

子类化 UIFont 是不够的,因为默认情况下标签和其他标签仍然会使用 UIFont 类。

Maybe a category on UIFont which redefines

+ (UIFont *)systemFontOfSize:(CGFloat)size {
    return [self fontWithName:@"YourFontName" size:size];
}

+ (UIFont *)boldSystemFontOfSize:(CGFloat)size {
    return [self fontWithName:@"YourBoldFontName" size:size];
}

to 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文