[UIAlertView alertViewWithTitle:@"" message:@"Submit successfully!" cancelBlock:^(NSInteger buttonIndex) {
} dismissBlock:nil cancelButtonTitle:@"OK" otherButtonsTitles:nil, nil];

这是UIAlertView声明。但是,我希望UI测试cancelButton
[tester tapViewWithAccessibilityLabel:@"cancelButton"];

我应该如何为该cancelButton添加可访问性?

最佳答案

您应该能够通过触发取消按钮来消除警报。您可以通过其标签识别取消按钮,在您的情况下为“OK”。

10-08 06:21