I want to react when somebody shakes the iPhone. I don't particularly care how they shake it, just that it was waved vigorously about for a split second. Does anyone know how to detect this?
|
16
|
|
|
|
|
|
From my Diceshaker application:
The histeresis prevents the shake event from triggering multiple times until the user stops the shake. |
||
|
|
|
I came across this post looking for a "shaking" implementation. millenomi's answer worked well for me, although i was looking for something that required a bit more "shaking action" to trigger. I've replaced to Boolean value with an int shakeCount. I also reimplemented the L0AccelerationIsShaking() method in Objective-C. You can tweak the ammount of shaking required by tweaking the ammount added to shakeCount. I'm not sure i've found the optimal values yet, but it seems to be working well so far. Hope this helps someone:
PS: I've set the update interval to 1/15th of a second.
|
||
|
|
You need to check the accelerometer via accelerometer:didAccelerate: method which is part of the UIAccelerometerDelegate protocol and check whether the values go over a threshold for the amount of movement needed for a shake. There is decent sample code in the accelerometer:didAccelerate: method right at the bottom of AppController.m in the GLPaint example which is available on the iPhone developer site. |
||
|
|
Check out the GLPaint example. |
||
|
|
This is the basic delegate code you need:
Also set the in the appropriate code in the Interface. i.e: @interface MyViewController : UIViewController [UIPickerViewDelegate, UIPickerViewDataSource, UIAccelerometerDelegate] (replace my square brakes for < >, stackoverflow thinks they are html markup and is hidding them) |
||
