简体   繁体   English

表格视图不会随着画外音焦点滚动

[英]Table view doesn’t scroll with voiceover focus

I'm working with a table view and when the user tap on a particular cell it expands and the views are setup as in the attached image.我正在使用表格视图,当用户点击特定单元格时,它会展开,并且视图设置如所附图像中所示。

在此处输入图像描述

My question is related to accessibility.我的问题与可访问性有关。 When the buttons at the bottom are out of the screen (small screens like iPhone 6s) voiceover focuses on them but the table view doesn't scroll them into view.当底部的按钮超出屏幕(像 iPhone 6s 这样的小屏幕)时,画外音会聚焦在它们上面,但表格视图不会将它们滚动到视图中。 Also when I activate (double tap with voiceover enabled) the focused button they don't work.此外,当我激活(在启用画外音的情况下双击)聚焦按钮时,它们不起作用。 But when the buttons are visible I can activate the button with voiceover enabled.但是当按钮可见时,我可以在启用画外音的情况下激活按钮。 How can I make buttons scroll into view on smaller screens?如何让按钮在较小的屏幕上滚动到视图中?

I was able to find a workaround for this problem using NSNotificationCenter.我能够使用 NSNotificationCenter 找到解决此问题的方法。 But if you guys have a better solution please suggest.但是,如果你们有更好的解决方案,请提出建议。

- (void)viewDidLoad {
    
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(accessibilityElementFocussed:)
                                                 name:UIAccessibilityElementFocusedNotification
                                               object:nil];
    
     //........
}
-(void)accessibilityElementFocussed:(NSNotification*)notification  {
    NSNotification* focusedNotification = notification;
    
    if ([focusedNotification.name isEqualToString:UIAccessibilityElementFocusedNotification])
    {
        NSDictionary* userInfo = focusedNotification.userInfo;
        UIView* view = userInfo[@"UIAccessibilityFocusedElementKey"];
        
        if ([view isKindOfClass:[CustomAttributedUIButton class]])
        {
            CGRect scrollTo = view.superview.superview.superview.superview.frame;
            [self.tableView scrollRectToVisible:scrollTo animated:NO];
        }
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM