ios – 初始VoiceOver选择

前端之家收集整理的这篇文章主要介绍了ios – 初始VoiceOver选择前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在为我的应用添加VoiceOver支持.到目前为止,很好,但我真的希望能够指定哪个元素是UIAccessibilityScreenChangedNotification之后的第一个元素.我没有看到这样做的方法.做一些总结元素似乎没有做到这一点.我错过了什么吗?

解决方法

这完全可以做到这一点.

只要写一些东西:

- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];

    UIAccessibilityPostNotification(UIAccessibilityScreenChangedNotification,self.myFirstElement);
}
@end

这适用于UIAccessibilityScreenChangedNotification和UIAccessibilityLayoutChangedNotification.
更多信息:http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIAccessibility_Protocol/Introduction/Introduction.html#//apple_ref/c/data/UIAccessibilityLayoutChangedNotification
和这里:
http://developer.apple.com/library/ios/featuredarticles/ViewControllerPGforiPhoneOS/Accessibility/AccessibilityfromtheViewControllersPerspective.html#//apple_ref/doc/uid/TP40007457-CH2-SW1

原文链接:https://www.f2er.com/iOS/335761.html

猜你在找的iOS相关文章