Instance Method インスタンスメソッド

accessibilityActivate()

Tells the element to activate itself and report the success or failure of the operation.

Declaration 宣言

func accessibilityActivate() -> Bool

Return Value 戻り値

true if the element was activated or false 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