In our current UI, next to certain labels, we have a help-tip button that when clicked, explains the details of what the label references. As such, VoiceOver identifies the
In your UILabel subclass, override accessibilityActivate() and implement whatever double-tapping should do:
UILabel
override func accessibilityActivate() -> Bool { // do things... return true }
If the action can fail, return false in those instances.
false