0

I am looking for a strategy or guidance to get the functionality. I have a an app that does simple math. A math sum such as "4+4 = 8" appears, and if the user agrees they draw a "tick" or "correction mark" (similar to the Nike tick) or if they dont agree they draw an "X".

I know how to draw however what is the technique to detect if either the tick or the X has been drawn? Or simpler, just detect if the "tick" is indeed a tick.

It is just guidance and/or direction to find a solution that will recognise these using UIGestureRecognizer.

DevC
  • 6,982
  • 9
  • 45
  • 80
  • http://www.raywenderlich.com/6567/uigesturerecognizer-tutorial-in-ios-5-pinches-pans-and-more This shows how to create custom gestures with UIGesturerecognizer – Putz1103 Mar 05 '14 at 15:43
  • @Putz1103 thanks very much, this is a good start – DevC Mar 05 '14 at 15:46

1 Answers1

0

Custom gestures are possible using UIGestureRecognizer. I'm not sure how to do it as I never have before. But here is a good tutorial on the different options available.

Tutorial

Also this answer.

And this answer.

Community
  • 1
  • 1
Putz1103
  • 6,211
  • 1
  • 18
  • 25