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?
|
|
From my Diceshaker application:
The histeresis prevents the shake event from triggering multiple times until the user stops the shake. |
||||||||
|
|
|
In 3.0, there's now an easier way - hook into the new motion events. The main trick is that you need to have some UIView (not view controller) that you want as firstResponder to receive the shake event messages. Here's the code that you can use in any UIView to get shake events:
You can easily transform any UIView (even system views) into a view that can get the shake event simply by subclassing the view with only these methods (and then selecting this new type instead of the base type in IB, or using it when allocating a view). In the view controller, you want to set this view to become first responder:
Don't forget that if you have other views that become first responder from user actions (like a search bar or text entry field) you'll also need to restore the shaking view first responder status when the other view resigns! This method works even if you set applicationSupportsShakeToEdit to NO. |
||||||||||
|
|
|
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) |
||
|
|
|
|
Hi, Im a noob in XCode, and I am implementing an app with two views Inputs and TableView, two controllers, and one app delegate. Been trying to implement the code that is provided in the GLPaint example but nothing happens (uisng Xcode Version 3.1.3) @Kendall, read your posts... Could you help me with more details on where to implement the code you provided... I'm a bit confused on this part... Should I implement it in the delegate? Thanksss!! |
||
|
|
|
Just to add to Kendall's solution, setting the "shake" view's first reponder status should be done when the "shake" view is ALREADY part of the view hierarchy.. preferably after a call to [view addSubview:shakeView] |
||
|
|
|
|
Sorry to post this as an answer rather than a comment but as you can see I'm new to Stack Overflow and so I'm not yet reputable enough to post comments! Anyway I second cire about making sure to set the first responder status once the view is part of the view hierarchy. So setting first responder status in your view controllers Another point: you can use a view controller to capture the shake event if you don't want to create a UIView subclass unnecessarily. I know it's not that much hassle but still the option is there. Just move the code snippets that Kendall put into the UIView subclass into your controller and send the |
||
|
|
|
|
First, Kendall's July 10th answer is spot-on. Now ... I wanted to do something similar (in iPhone OS 3.0+), only in my case I wanted it app-wide so I could alert various parts of the app when a shake occurred. Here's what I ended up doing. First, I subclassed UIWindow. This is easy peasy. Create a new class file with an interface such as
Change Now, if you use a MainWindow.xib (stock Xcode template stuff), go in there and change the class of your Window object from UIWindow to MotionWindow or whatever you called it. Save the xib. If you set up UIWindow programmatically, use your new Window class there instead. Now your app is using the specialized UIWindow class. Wherever you want to be told about a shake, sign up for them notifications! Like this:
To remove yourself as an observer:
I put mine in viewWillAppear: and viewWillDisappear: where View Controllers are concerned. Be sure your response to the shake event knows if it is "already in progress" or not. Otherwise, if the device is shaken twice in succession, you'll have a li'l traffic jam. This way you can ignore other notifications until you're truly done responding to the original notification. Also: You may choose to cue off of motionBegan vs. motionEnded. It's up to you. In my case, the effect always needs to take place after the device is at rest (vs. when it starts shaking), so I use motionEnded. Try both and see which one makes more sense ... or detect/notify for both! One more (curious?) observation here: Notice there's no sign of first responder management in this code. I've only tried this with Table View Controllers so far and everything seems to work quite nicely together! I can't vouch for other scenarios though. Kendall, et. al - can anyone speak to why this might be so for UIWindow subclasses? Is it because the window is at the top of the food chain? |
||||||
|
