Quote:
Originally Posted by bostonmerlin
i believe the 'moveme' sample code by apple shows how to do touch-hold and drag as well. i expect you've already looked at that code and it didnt work for you.
john
|
Yeah, that's not the same as the touch and hold that I needed. The "moveme" sample simply alters the location of a UIView (named "PlacardView") to match location of the current touch. It's not actually a "touch and hold", it just looks like it because you're dragging the image across the screen. In reality though, it's just a location change in the touchesMoved event method.
What I needed is almost like a new touch event method other than began, moved, and ended. I needed an event that occurs after the touch has been held for a duration of time.
-Toryn