Last active
January 21, 2018 17:14
-
-
Save mczachurski/1274e432b9aae98048c55e1c3e45577e 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
let twoFingersGestureReognizer = TwoFingersGestureRecognizer(target: self, action: #selector(twoFingersGestureRecognizer)) | |
twoFingersGestureReognizer.cancelsTouchesInView = false | |
twoFingersGestureReognizer.delegate = self | |
self.view.addGestureRecognizer(twoFingersGestureReognizer) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment