我在屏幕上有一堆按钮,这些按钮直观地定位,但不是由VoiceOver以直观的顺序阅读。这是因为某些按钮(如向上和向下)位于彼此的上方和下方。然而,画外音开始从左到右,从上到下阅读,似乎。
这导致画外音在“向上”之后读取“向上”右侧的按钮,而不是在之后立即读取“向下”。
如何强制画外音阅读我想要阅读的按钮?我应该提一下,我正在使用画外音上的滑动到循环元素功能。
我的所有按钮都是UIView和UIButton的子类。这是我使用的按钮启动器的示例。忽略像素数 - 我知道这是不好的形式,但我现在处于紧张状态:
UIButton* createSpecialButton(CGRect frame,
NSString* imageName,
NSString* activeImageName,
id target,
SEL obClickHandler)
{
UIButton* b = [UIButton buttonWithType:UIButtonTypeCustom];
[b setImage:[GlobalHelper nonCachedImage:imageName ofType:@"png"]
forState:UIControlStateNormal];
[b setImage:[GlobalHelper nonCachedImage:activeImageName ofType:@"png"]
forState:UIControlStateHighlighted];
[b addTarget:target action:obClickHandler forControlEvents:UIControlEventTouchUpInside];
b.frame= frame;
return b;
}
- (UIButton *) createSendButton {
CGFloat yMarker = 295;
UIButton* b = createSpecialButton(CGRectMake(160, yMarker, 70, 45),
@"Share_Btn",
@"Share_Selected_Btn",
self,
@selector(sendAction));
b.accessibilityHint = @"Send it!";
b.accessibilityLabel = @"Stuff for voiceover to be added";
[self.view addSubview:b];
return b;
}
答案 0 :(得分:36)
您可以更改视图的accessibilityElements数组的顺序设置:
self.view.accessibilityElements = @[self.view1, self.view2, self.view3, self.view4];
或
self.anotherView.accessibilityElements = @[self.label1, self.txtView1, self.label2, self.txtView2];
如果您需要以编程方式设置交互:
[self.view1 setUserInteractionEnabled:YES];
如果视图被隐藏,则语音将不会通过它。
答案 1 :(得分:27)
最简单的答案在于创建一个包含按钮的UIView
子类,并对系统的可访问性调用做出不同的响应。这些重要的电话是:
-(NSInteger)accessibilityElementCount
-(id)accessibilityElementAtIndex:
-(NSInteger)indexOfAccessibilityElement:
我已经看过其中一些问题和answered one before,但我还没有看到如何重新排列VoiceOver焦点的一般示例。以下是如何创建UIView
子类的示例,该子类通过标记将其可访问的子视图公开给VoiceOver。
<强> AccessibilitySubviewsOrderedByTag.h 强>
#import <UIKit/UIKit.h>
@interface AccessibilitySubviewsOrderedByTag : UIView
@end
<强> AccessibilitySubviewsOrderedByTag.m 强>
#import "AccessibilityDirectional.h"
@implementation AccessibilitySubviewsOrderedByTag {
NSMutableArray *_accessibilityElements;
}
//Lazy loading accessor, avoids instantiating in initWithCoder, initWithFrame, or init.
-(NSMutableArray *)accessibilityElements{
if (!_accessibilityElements){
_accessibilityElements = [[NSMutableArray alloc] init];
}
return _accessibilityElements;
}
// Required accessibility methods...
-(BOOL)isAccessibilityElement{
return NO;
}
-(NSInteger)accessibilityElementCount{
return [self accessibilityElements].count;
}
-(id)accessibilityElementAtIndex:(NSInteger)index{
return [[self accessibilityElements] objectAtIndex:index];
}
-(NSInteger)indexOfAccessibilityElement:(id)element{
return [[self accessibilityElements] indexOfObject:element];
}
// Handle added and removed subviews...
-(void)didAddSubview:(UIView *)subview{
[super didAddSubview:subview];
if ([subview isAccessibilityElement]){
// if the new subview is an accessibility element add it to the array and then sort the array.
NSMutableArray *accessibilityElements = [self accessibilityElements];
[accessibilityElements addObject:subview];
[accessibilityElements sortUsingComparator:^NSComparisonResult(id obj1, id obj2){
// Here we'll sort using the tag, but really any sort is possible.
NSInteger one = [(UIView *)obj1 tag];
NSInteger two = [(UIView *)obj2 tag];
if (one < two) return NSOrderedAscending;
if (one > two) return NSOrderedDescending;
return NSOrderedSame;
}];
}
}
-(void)willRemoveSubview:(UIView *)subview{
[super willRemoveSubview:subview];
// Clean up the array. No check since removeObject: is a safe call.
[[self accessibilityElements] removeObject:subview];
}
@end
现在只需将按钮包含在此视图的实例中,并将按钮上的标记属性设置为焦点顺序。
答案 2 :(得分:7)
在Swift中你只需要设置view的accessiblityElements数组属性:
view.accessibilityElements = [view1, view2, view3]
//您希望拥有的订单
答案 3 :(得分:3)
我尝试Wesley's answer设置accessibilityElements
的数组,但它对我没用。
Apple有一些文档Enhancing the Accessibility of Table View Cells,代码中有一个示例。基本上,您将单元格的可访问性标签(父视图)设置为子视图的可访问性标签的值。
[cell setAccessibilityLabel:[NSString stringWithFormat:@"%@, %@", cityLabel, temperatureLabel]];
这对我有用。
答案 4 :(得分:3)
这并不直接回答原始问题,但它回答了问题的标题:
当我希望VoiceOver向下滑动列时,我一直在为shouldGroupAccessibilityChildren
设置的列使用包含视图。
我希望我早些时候知道这一点,因为将容器追溯到自动布局情况可能会很痛苦......
答案 5 :(得分:3)
我知道这是一个旧线程,但我发现最简单的方法是将UIView作为子类(Swift 3)。然后只需将故事板中的主要UIView类型修改为AccessibiltySubviewsOrderedByTag,并更新要按顺序读取的每个子视图中的标记。
class AccessibilitySubviewsOrderedByTag:UIView {
override func layoutSubviews() {
self.accessibilityElements = [UIView]()
for accessibilitySubview in self.subviews {
if accessibilitySubview.isAccessibilityElement {
self.accessibilityElements?.append(accessibilitySubview)
}
}
self.accessibilityElements?.sort(by: {($0 as AnyObject).tag < ($1 as AnyObject).tag})
}
}
答案 6 :(得分:2)
我认为你可以在故事板中做到这一点。 VoiceOver顺序由文档大纲中的视图顺序决定。
只需按正确的顺序拖放视图层次结构中的视图。
编辑:
抱歉,我不能发布屏幕直到10声望。在故事板中,文档大纲是左侧区域,其中列出了包含子视图的场景。在这里,子视图按顺序排列。当您更改此顺序时,VoiceOver的阅读顺序将会改变。
答案 7 :(得分:2)
昨天我找到了一种方便的方法。类似于@TejAces的答案。 制作一个新的swift文件,然后将这些内容复制到其中。
import UIKit
extension UIView {
func updateOrder(_ direction: Bool = true) {
var tempElements: [Any]? = [Any]()
let views = (direction) ? subviews : subviews.reversed()
for aView in views {
tempElements?.append(aView)
}
accessibilityElements = tempElements
}
}
class ReorderAccessibilityByStoryBoardView: UIView {
override func didAddSubview(_ subview: UIView) {
updateOrder()
}
}
将UIView(包含要重新排序的视图)的类设置为ReorderAccessibilityByStoryBoardView。然后,您可以通过对故事板的视图列表进行重新排序来对其进行重新排序。
由于子视图在StackView / ScrollView中不包含视图,因此需要在此文件中创建一个独立的类。例如下面的ReorderAccessibilityByStoryBoardStackView。
class ReorderAccessibilityByStoryBoardStackView: UIStackView {
override func didAddSubview(_ subview: UIView) {
updateOrder(false)
}
}
使用这些代码,您还可以通过按特定顺序添加视图中的代码来重新排序视图中的代码。
答案 8 :(得分:0)
Swift5 你可以设置视图的 accessiblityElements 数组属性:
当父视图为 UIStackView
view.accessibilityElements = [view1, label2, button3...]
// 您想要的订单