Skip to content

Instantly share code, notes, and snippets.

@zigdanis
Created January 12, 2017 13:08
Show Gist options
  • Save zigdanis/95a9e1200cb6b70329df5cf6a1925a2f to your computer and use it in GitHub Desktop.
Save zigdanis/95a9e1200cb6b70329df5cf6a1925a2f to your computer and use it in GitHub Desktop.
func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
guard let touchView = touch.view else { return true }
if touchView.isDescendant(of: channelsTable) {
return false
}
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment