Last active
April 29, 2021 15:38
-
-
Save giovani-pereira-ifood/20a5c638045fff871585f4980f6353d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SearchView: UIView { | |
... | |
override func accessibilityPerformMagicTap() -> Bool { | |
expandList() | |
return true | |
} | |
} | |
class ListView: UIView { | |
... | |
override func accessibilityPerformMagicTap() -> Bool { | |
collapseList() | |
return true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment