3

I have gone through the documentation: https://web.archive.org/web/20130309051214/http://developer.apple.com/library/ios/documentation/EventHandling/Conceptual/EventHandlingiPhoneOS/GestureRecognizer_basics/GestureRecognizer_basics.html#//apple_ref/doc/uid/TP40009541-CH2-SW2

I am trying to implement the check mark example shown in the documentation and I can't because the compiler shows a bunch of warnings about the [super touchesMoved:touches withEvent:event] call, which is recommended by the documentation.

Where's the full example to learn how to correctly subclass for implementing a custom gesture?

Cœur
  • 37,241
  • 25
  • 195
  • 267
amok
  • 1,736
  • 4
  • 20
  • 41

1 Answers1

8

I found the following WWDC 2010 Session Videos extremely useful:

  • Session 120 - Simplifying Touch Event Handling with Gesture Recognizers (pdf)
  • Session 121 - Advanced Gesture Recognition (pdf)

To access these videos you must login at https://developer.apple.com.

Cœur
  • 37,241
  • 25
  • 195
  • 267
vikingosegundo
  • 52,040
  • 14
  • 137
  • 178
  • Thank you this helps a lot - I had skipped the "Advanced..." previously. I don't seem be able to download the source, any idea on why? – amok Nov 02 '10 at 18:26
  • 1
    try to navigate there by ur own. I posted the links for HD. U could try SD. http://developer.apple.com/videos/wwdc/2010/ – vikingosegundo Nov 02 '10 at 18:29
  • My itunes window was too small, I found it. Thanks! Where's the advanced sample for the gestures? I see only touches and simple gestures in the zip. – amok Nov 02 '10 at 20:14
  • I've fixed some links, but I don't know how to fix the link to sample codes of WWDC 2010 which may have been unpublished by Apple in favor of newer videos/sessions. – Cœur Jun 09 '19 at 12:13
  • Well, I've found the pdf, that's probably the best we can get now. – Cœur Jun 09 '19 at 14:02