I want to track The speed Of the Touch moved in pixel /Second
Any Budy Having idea For This
Except the PanGesture Method
|
I want to track The speed Of the Touch moved in pixel /Second Except the PanGesture Method |
|||||||||||
|
|
I'll assume you want to know the velocity between consecutive movements, and not an average over a series of movements. The theory should be easy enough to adapt if you have other requirements, though. You will need to know three things:
Then just use Pythagoras to get your distance, and divide by time for speed. When you get a touchesMoved event, it will provide the current and previous position for you. All you need to then add is a measure of time. For that, you will want an NSDate property in your class to help calculate the time interval. You could initialise and release it in viewDidLoad / viewDidUnload, or somewhere similar. In my example, mine is called lastTouchTime, it is retained, and I initialised like this:
and I release it in the predictable way. Your touchesMoved event should then look something like this:
Apologies if I've made a faux pas with any memory management, I'm still not very comfortable with ObjectiveC's way of doing things. I'm sure somebody can correct it if necessary! Good luck, Freezing. |
|||
|
|