在iOS 10之前,禁用和启用的uibarbuttonitem的字体保持不变,只是颜色不同。但是,在将我的应用安装到具有ios 11的设备上之后,禁用模式的字体得到更新(显示系统字体),而在启用模式下,它显示的是我设置的正确字体。

因此,对于iOS 11,我如何设置禁用模式的字体以保持应用程序的一致性。

最佳答案

至少在我使用UIAppearance协议(protocol)的情况下,这在iOS 11中似乎已更改。不知道这是错误还是故意的。

我还发现我无法一起屏蔽值(例如.normal|.disabled),因为这意味着仅在控件满足所有状态时才应用字体。

所以我最终这样做:

for controlState in [UIControlState.normal, UIControlState.disabled, UIControlState.focused, UIControlState.highlighted, UIControlState.selected] {
    barButton.setTitleTextAttributes([NSFontAttributeName: customFontName], for: controlState)
}

要使用UIAppearance协议(protocol)在任何地方更新它,请执行以下操作:
for controlState in [UIControlState.normal, UIControlState.disabled, UIControlState.focused, UIControlState.highlighted, UIControlState.selected] {
    UIBarButtonItem.appearance().setTitleTextAttributes([NSFontAttributeName: customFontName, for: controlState);
}

10-05 22:28