Sometimes Accelerometer delegate method is not called - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T09:02:31Z http://stackoverflow.com/feeds/question/249241 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/249241/sometimes-accelerometer-delegate-method-is-not-called 5 Sometimes Accelerometer delegate method is not called Carlos Hernandez 2008-10-30T04:05:31Z 2008-11-21T14:13:45Z <p>I have an application that uses the accelerometer. Sometimes, the application will launch without the accelerometer data updating. Relaunching the app, sometimes the problem persist, sometimes it doesn't. And even weirder, sometimes I can try 10 times and everything works as expected. Is this a bug, or maybe something I am missing. Debugging, this code is never called when the accelerometer is not updated:</p> <pre><code>- (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration; </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/249241/sometimes-accelerometer-delegate-method-is-not-called/249492#249492 0 Answer by MrDatabase for Sometimes Accelerometer delegate method is not called MrDatabase 2008-10-30T07:29:49Z 2008-10-30T22:13:52Z <p>I have this same problem. It happens perhaps 1/20 times with an app I made from the CrashLanding sample. After I noticed it with my app I grabbed a fresh version of Crashlanding, installed it, and finally got it to start with accelerometer failing.</p> <p>I don't know how to fix it. Honestly I hate the accelerometer... at least for controlling games :-\</p> <p>Also, the accelerometer has occasionally failed when I start the "accelerometer" sample project.</p> http://stackoverflow.com/questions/249241/sometimes-accelerometer-delegate-method-is-not-called/252617#252617 5 Answer by Carlos Hernandez for Sometimes Accelerometer delegate method is not called Carlos Hernandez 2008-10-31T04:46:30Z 2008-10-31T04:46:30Z <p>I finally found a work around. This is a known bug. So the work around I found is to start a thread and have this thread check if the accelerometer delegate has been called, if it has, then quit the thread, if not, set the delegate again, and re-test, until the accelerometer delegate gets called. I tested this throughly and it works flawlessly. I hope this gets resolved on the next update of the iPhone OS.</p> http://stackoverflow.com/questions/249241/sometimes-accelerometer-delegate-method-is-not-called/253940#253940 0 Answer by SytS for Sometimes Accelerometer delegate method is not called SytS 2008-10-31T15:39:06Z 2008-10-31T15:39:06Z <p>As others have mentioned, this is a known bug; I have logged the bug with Apple (Bug Reporter problem ID 6093028), perhaps others have done so as well. As far as I know, all apps that makes use of UIAccelerometer (including Apple's sample apps) suffer from this issue, though the frequency of occurance varies.</p> http://stackoverflow.com/questions/249241/sometimes-accelerometer-delegate-method-is-not-called/308727#308727 0 Answer by Steph Thirion for Sometimes Accelerometer delegate method is not called Steph Thirion 2008-11-21T13:18:32Z 2008-11-21T13:18:32Z <p>This could have been fixed with the fresh new 2.2. Can anyone confirm?</p> http://stackoverflow.com/questions/249241/sometimes-accelerometer-delegate-method-is-not-called/308897#308897 0 Answer by Marco for Sometimes Accelerometer delegate method is not called Marco 2008-11-21T14:13:45Z 2008-11-21T14:13:45Z <p>FWIW, my app is widely used and it uses the accelerometer, and I've never had this problem.</p> <p>My use case may be different than yours: I only enable it on user request, well after the application is launched.</p>