Skip to content

Instantly share code, notes, and snippets.

@cafielo
Created February 26, 2018 16:24
Show Gist options
  • Save cafielo/a41054afe1ec71dba3d6ff96f1c087cc to your computer and use it in GitHub Desktop.
Save cafielo/a41054afe1ec71dba3d6ff96f1c087cc to your computer and use it in GitHub Desktop.
extension ViewController: UIGestureRecognizerDelegate {
func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
let isControllTapped = touch.view is UIControl
return !isControllTapped
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment