Instance Method
インスタンスメソッド
accessibilityActivate
Tells the element to activate itself and report the success or failure of the operation.
Declaration
宣言
- (BOOL)accessibilityActivate;
Return Value
戻り値
YES
if the element was activated or NO
if it was not.
Discussion
解説
You can use this method to make complex controls more readily accessible to users. The accessibility system calls this method when a VoiceOver user double taps the selected element. Your implementation of this method should activate the element and perform whatever other tasks it deems appropriate. For example, you might use the method to activate a control that requires a complex gesture and would be difficult for VoiceOver users to perform, possibly because the gesture has a different meaning when VoiceOver is running.
After performing any tasks, return an appropriate Boolean value to indicate success or failure.
See Also
参照
Performing an Action
- accessibilityScroll:
Scrolls screen content in an application-specific way and returns the success or failure of the action.