Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save giovani-pereira-ifood/20a5c638045fff871585f4980f6353d7 to your computer and use it in GitHub Desktop.
Save giovani-pereira-ifood/20a5c638045fff871585f4980f6353d7 to your computer and use it in GitHub Desktop.
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