How can I differentiate a Shake vs a Tilt on the iPhone - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T20:54:14Zhttp://stackoverflow.com/feeds/question/1019665http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1019665/how-can-i-differentiate-a-shake-vs-a-tilt-on-the-iphone1How can I differentiate a Shake vs a Tilt on the iPhoneconeybeare2009-06-19T19:26:22Z2009-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#10196690Answer by Aric TenEyck for How can I differentiate a Shake vs a Tilt on the iPhoneAric TenEyck2009-06-19T19:28:05Z2009-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#10196751Answer by Dana Holt for How can I differentiate a Shake vs a Tilt on the iPhoneDana Holt2009-06-19T19:28:43Z2009-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#10197501Answer by Marco Mustapic for How can I differentiate a Shake vs a Tilt on the iPhoneMarco Mustapic2009-06-19T19:50:35Z2009-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>