What's the best approach to change view properties due to accelerometer-value-changes? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T01:21:53Zhttp://stackoverflow.com/feeds/question/825821http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/825821/whats-the-best-approach-to-change-view-properties-due-to-accelerometer-value-cha0What's the best approach to change view properties due to accelerometer-value-changes?Thanks2009-05-05T16:42:56Z2009-05-05T22:09:12Z
<p>I want to do this: If the device moves (accelerometer values change), then I want to adjust some values in my view according to that movement.</p>
<p>Would I invoke a method every time an accelerometer value changes? I believe that would be a bad idea, since they might refresh too often.</p>
http://stackoverflow.com/questions/825821/whats-the-best-approach-to-change-view-properties-due-to-accelerometer-value-cha/825842#8258421Answer by McWafflestix for What's the best approach to change view properties due to accelerometer-value-changes?McWafflestix2009-05-05T16:46:52Z2009-05-05T16:46:52Z<p>If you're worried about too frequent changes, just use an accumulator; use a little bit of code that detects the changes, and checks the system time; only if enough system time has passed, do you fire the (potentially accumulated) change method.</p>
http://stackoverflow.com/questions/825821/whats-the-best-approach-to-change-view-properties-due-to-accelerometer-value-cha/825845#8258451Answer by Chathuranga Chandrasekara for What's the best approach to change view properties due to accelerometer-value-changes?Chathuranga Chandrasekara2009-05-05T16:47:18Z2009-05-05T16:47:18Z<p>I think so... If not you have only one option. Getting a reading periodically. Again shorter the period, higher the accuracy. So it might be more efficient if you can trigger an event when a change in value is detected.</p>
http://stackoverflow.com/questions/825821/whats-the-best-approach-to-change-view-properties-due-to-accelerometer-value-cha/825867#8258671Answer by Antonio Haley for What's the best approach to change view properties due to accelerometer-value-changes?Antonio Haley2009-05-05T16:51:47Z2009-05-05T16:51:47Z<p>If you are concerned about noise coming from the accelerometer you can smooth out the inputs by implementing a moving average. This will allow you to take samples however frequently you want without worrying about false starts coming from the accelerometer. </p>
<p><a href="http://en.wikipedia.org/wiki/Moving_average" rel="nofollow">http://en.wikipedia.org/wiki/Moving_average</a></p>
http://stackoverflow.com/questions/825821/whats-the-best-approach-to-change-view-properties-due-to-accelerometer-value-cha/827132#8271321Answer by Benny Wong for What's the best approach to change view properties due to accelerometer-value-changes?Benny Wong2009-05-05T22:09:12Z2009-05-05T22:09:12Z<p>When you implement the <code>accelerometer:didAccelerate:</code> method in your <code>UIAccelerometerDelegate</code>, just have an <code>if</code> statement, checking if the time between the last time you got an update if long enough.</p>
<p>In your class that implements <code>UIAccelerometerDelegate</code>, you can have a property that holds something like <code>lastTimeUpdated</code> and then update it whenever you change your view</p>