3

我面临辅助功能读取顺序问题的问题。

我在作为 childViewControllers 添加的 3 个 UIViewControllers 中有一个 UIViewController。

NavigationController 被添加到 MainViewController。

当我打开辅助功能时,VO 开始从 childviewcontroller 子视图读取,然后移动到 NavigationController。阅读导航栏后 Vo 不会向下移动。

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.suppressCart = YES;
    [self setupNavigationItems];

    // Set up the embedded navigation controller for the delivery/payment/review
    // subviews
    self.stepController = [[UINavigationController alloc] init];
    self.stepController.delegate = self;
    self.stepController.navigationBarHidden = YES;

    // Add it to this view controller as a child
    // Note: do not call begin/end appearance transitions
    [self addChildViewController:self.stepController];
    [self.view addSubview:self.stepController.view];

    self.stepController.view.frame = CGRectOffsetAndShrink(self.view.bounds, 0, TargetBreadcrumbButtonHeight);

}

self.stepController 用于在 MainViewController 中推送视图控制器。

有没有人遇到过这个问题。需要帮助来解决这个问题。

有没有办法让VO读取无限循环中的每个元素?

谢谢,拉克什

4

0 回答 0