gpt4 book ai didi

iphone - UINavigationItem -title 是否提供辅助功能?

转载 作者:行者123 更新时间:2023-12-03 17:44:00 26 4
gpt4 key购买 nike

我正在尝试向 VoiceOver 用户提供稍微不同版本的 UINavigationItem 标题。由于缩写会被文本转语音引擎破坏,显示的标题不太适合视障人士。

有没有办法以 accessibilityLabel 的形式向这些标题添加辅助功能提示?

最佳答案

嗯,看来将 accessibilityLabel 添加到 UINavigationItem 的唯一方法是创建自定义 UILabel,如下所示:

- (void)viewDidLoad 
{
[super viewDidLoad];

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 120, 44)];
label.backgroundColor = [UIColor clearColor];
label.font = [UIFont boldSystemFontOfSize:20];
label.textAlignment = UITextAlignmentCenter;
label.textColor = [UIColor whiteColor];
label.shadowColor = [UIColor darkGrayColor];
label.shadowOffset = CGSizeMake(0, -1);
label.text = @"Human readable string incl. abbreviations";
label.accessibilityLabel = @"VoiceOver friendly text";
[self.navigationItem setTitleView:label];
[label sizeToFit];
[label release];
}

关于iphone - UINavigationItem -title 是否提供辅助功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4576930/

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