gpt4 book ai didi

ios - UIAppearance 未对以编程方式创建的 UILabel 生效

转载 作者:IT王子 更新时间:2023-10-29 08:14:05 26 4
gpt4 key购买 nike

我们扩展了 UILabel,以便能够为我们应用程序中给定标签类型的所有用途应用标准字体和颜色。例如。

@interface UILabelHeadingBold : UILabel
@end

在我们的 AppDelegate 中,我们像这样应用字体和颜色

[[UILabelHeadingBold appearance] setTextColor:<some color>];
[[UILabelHeadingBold appearance] setFont:<some font>];

在我们的 XIB 中添加 UILabel 时,我们现在可以选择类型为 UILabelHeadingBold 的类,并且它按预期工作。标签以正确的字体和颜色显示,如我们的 AppDelegate 中指定的那样。

但是,如果我们以编程方式创建标签,例如。

UILabelHeadingBold *headingLabel = [[UILabelHeadingBold alloc] initWithFrame:CGRectMake(10, 10, 100, 30)];
[self.mainView addSubview:headingLabel];

UILabel 没有应用预期的字体/颜色。我们必须手动应用这些属性。

有没有办法让 UIAppearance 对以编程方式创建的 UI 元素生效,或者它只在 XIB 中使用时才有效?

最佳答案

来自 Apple 文档:

To support appearance customization, a class must conform to the UIAppearanceContainer protocol and relevant accessor methods must be marked with UI_APPEARANCE_SELECTOR.

例如在UINavigationBar.h中,tintColor被标记为UI_APPEARANCE_SELECTOR

@property(nonatomic,retain) UIColor *tintColor UI_APPEARANCE_SELECTOR;

但是在 UILabel.h 中,您可以看到 textColorfont 属性没有用 UI_APPEARANCE_SELECTOR 标记,但是在 Interface Builder 中添加时它以某种方式起作用(遵循它的文档根本不应该工作)。

关于ios - UIAppearance 未对以编程方式创建的 UILabel 生效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11308379/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com