Slide 28
Slide 28 text
class MyGestureRecognizer: UIGestureRecognizer{
override func touchesBegan(_ touches: Set, with event: UIEvent) {
}
override func touchesMoved(_ touches: Set, with event: UIEvent) {
}
override func touchesEnded(_ touches: Set, with event: UIEvent) {
}
override func touchesCancelled(_ touches: Set, with event: UIEvent) {
}
override func reset() {
}
}