How can I differentiate a Shake vs a Tilt on the iPhone - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T20:54:14Z http://stackoverflow.com/feeds/question/1019665 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1019665/how-can-i-differentiate-a-shake-vs-a-tilt-on-the-iphone 1 How can I differentiate a Shake vs a Tilt on the iPhone coneybeare 2009-06-19T19:26:22Z 2009-06-19T19:50:35Z <p>I have a page UIScrollView that will scroll 1 page left or right depending on the tilt of the phone.</p> <p>I would also like to implement "Shake for a random page", but cannot figure out how to do the logic for differentiating a shake motion and a x-axis tilt.</p> <p>Can these two motions be used in conjunction with one another? I don't need anything complicated like shaking while tilting, I just want both to work independently of one another.</p> http://stackoverflow.com/questions/1019665/how-can-i-differentiate-a-shake-vs-a-tilt-on-the-iphone/1019669#1019669 0 Answer by Aric TenEyck for How can I differentiate a Shake vs a Tilt on the iPhone Aric TenEyck 2009-06-19T19:28:05Z 2009-06-19T19:28:05Z <p>A tilt should never exceed 1g, while a shake can easily do so.</p> http://stackoverflow.com/questions/1019665/how-can-i-differentiate-a-shake-vs-a-tilt-on-the-iphone/1019675#1019675 1 Answer by Dana Holt for How can I differentiate a Shake vs a Tilt on the iPhone Dana Holt 2009-06-19T19:28:43Z 2009-06-19T19:39:46Z <p>To detect a "shake" you would check the g-force generated. It will be higher for a shake vs a tilt.</p> <p><a href="http://stackoverflow.com/questions/150446/how-do-i-detect-when-someone-shakes-an-iphone">How do I detect when someone shakes an iPhone?</a></p> <p>You can definitely use both at the same time, just check the g-force for a high enough value to indicate a shake (> 1g - adjust to get the sensitivity to your liking), then if no shake is detected fall through to the tilt checking.</p> http://stackoverflow.com/questions/1019665/how-can-i-differentiate-a-shake-vs-a-tilt-on-the-iphone/1019750#1019750 1 Answer by Marco Mustapic for How can I differentiate a Shake vs a Tilt on the iPhone Marco Mustapic 2009-06-19T19:50:35Z 2009-06-19T19:50:35Z <p>The iPhone Application Programming Guide offers code samples for <a href="http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AdvancedFeatures/AdvancedFeatures.html#//apple%5Fref/doc/uid/TP40007072-CH14-SW7" rel="nofollow">detecting gravity</a> (tilt) and sudden acceleration (shakes)</p>