Search Results

1
vote

UITouch movement speed detection

You could try (zero out distanceSinceStart and timeSinceStart in touchesBegan): distanceSinceStart = distanceSinceStart + distanceFromPrevious; timeSinceStart = timeSincestart + tim …
1
vote

Bundle videos or download later?

I recently saw an alert in the appstore app on the phone that it would not permit me to update the app I was trying to update over 3G as it was > 10MB in size - I had to wait until I had WiFi conne …
4
votes

Where and how do I register an object for receiving an Notification?

Much simpler to use the application delegate and implement the optional method - (void)applicationDidReceiveMemoryWarning:(UIApplication *)application Most common …
14
votes

How can I delay a method call for 1 second?

performSelector:withObject:afterDelay …
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: …