gpt4 book ai didi

ios - 点击或按住字体图标时出现问号

转载 作者:行者123 更新时间:2023-11-29 00:06:44 38 4
gpt4 key购买 nike

因此,我最近开始对我的应用进行一些修补,使其与 iOS 11 兼容。值得庆幸的是,其中大部分似乎都是。

但是我确实注意到,在我的工具栏中,如果我点击或点击并按住一个图标(由 fontello 的 ttf 文件提供),我会看到一个问号框。

图标示例:

    menu = [[UIBarButtonItem alloc] initWithTitle:@"\ue811" style:UIBarButtonItemStylePlain target:self action:@selector(openMenu:)];
[menu setTitleTextAttributes:@{NSFontAttributeName:
[UIFont fontWithName:@"fontello"
size:23],
NSForegroundColorAttributeName:[[UIColor alloc] initWithWhite:1.f alpha:1.f]}
forState:UIControlStateNormal];

它在 10.3.1 模拟器中运行良好。只有 iOS 11 似乎搞砸了。我已经阅读了有关设备修复的信息,这意味着更新操作系统,但模拟器运行的是 11.2,因此理论上应该修复它。

还有其他人遇到这个问题吗?知道修复方法吗?

最佳答案

只需为 UIControlStateSelected 添加标题文本属性即可:

[menu setTitleTextAttributes:@{NSFontAttributeName:
[UIFont fontWithName:@"fontello"
size:23],
NSForegroundColorAttributeName:[UIColor greenColor]}

forState:UIControlStateSelected];

关于ios - 点击或按住字体图标时出现问号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47814043/

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