1
vote
UITouch movement speed detection
You could try (zero out distanceSinceStart and timeSinceStart in touchesBegan):
distanceSinceStart = distanceSinceStart + distanceFromPrevious;
timeSinceStart = timeSincestart + tim …
14
votes
2
votes
Is there an overview of all codes that can be used inside NSLog()?
Also, there's a very nice overview, as well as some tips and tricks, in the most recent "Friday Q&A" posting on Mike Ash's NSBlog blog:
…
