Created
September 16, 2015 12:01
-
-
Save Pym/b4fbda0b250ad67a430f to your computer and use it in GitHub Desktop.
This file contains 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
func gestureRecognizer(gestureRecognizer: UIGestureRecognizer, shouldBeRequiredToFailByGestureRecognizer otherGestureRecognizer: UIGestureRecognizer) -> Bool { | |
if let swipeRec = gestureRecognizer as? UISwipeGestureRecognizer { | |
if let panRec = otherGestureRecognizer as? UIPanGestureRecognizer { | |
return true | |
} | |
} else if let panRec = gestureRecognizer as? UIPanGestureRecognizer { | |
if let tapRec = otherGestureRecognizer as? UITapGestureRecognizer { | |
return true | |
} | |
} | |
return false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment