我正在为我的应用添加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