iPhone Accelerometer crashes app - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T12:00:00Z http://stackoverflow.com/feeds/question/1014580 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1014580/iphone-accelerometer-crashes-app 1 iPhone Accelerometer crashes app Alpinista 2009-06-18T19:01:29Z 2009-06-18T20:23:33Z <p>I have an navigation-based app that I want to use the accelerometer to detect a shake and cause a scroll view to scroll to the next page. I have added accelerometer code to the view controller of my scrollView, and it works great; a shake calls my page change method. But when I unload the scrollViewController from the navigation stack the app crashes.</p> <p>I set up the accelerometer in the viewDidLoad method of the scrollViewController, and respond to a shake in the accelerometer: didAccelerate: delegate method.</p> <p>When the scrollViewController gets deallocated, the app crashes.</p> <p>What am I missing?</p> <p>Thanks</p> http://stackoverflow.com/questions/1014580/iphone-accelerometer-crashes-app/1014598#1014598 0 Answer by Nosredna for iPhone Accelerometer crashes app Nosredna 2009-06-18T19:04:00Z 2009-06-18T19:04:00Z <p>What is your update rate on the accelerometer? I've heard of weird things happening if it's too high.</p> http://stackoverflow.com/questions/1014580/iphone-accelerometer-crashes-app/1014605#1014605 0 Answer by ryansstack for iPhone Accelerometer crashes app ryansstack 2009-06-18T19:05:24Z 2009-06-18T19:05:24Z <p>How are you switching pages? Do you deallocate your only view controller, then allocate a new one?</p> http://stackoverflow.com/questions/1014580/iphone-accelerometer-crashes-app/1014923#1014923 0 Answer by JuniorFlip for iPhone Accelerometer crashes app JuniorFlip 2009-06-18T20:09:49Z 2009-06-18T20:09:49Z <p>I can't make a comment so I had to post this in the answer. can you display how you new view page load. as I am understanding is once the you shake it it suppose to switch to a new view. Can you display your call to the new view.</p> http://stackoverflow.com/questions/1014580/iphone-accelerometer-crashes-app/1014994#1014994 2 Answer by Alpinista for iPhone Accelerometer crashes app Alpinista 2009-06-18T20:22:53Z 2009-06-18T20:22:53Z <p>Found the answer in another thread:</p> <p><a href="http://stackoverflow.com/questions/740519/how-do-you-release-a-shared-accelerator-instance-on-the-iphone">http://stackoverflow.com/questions/740519/how-do-you-release-a-shared-accelerator-instance-on-the-iphone</a></p> <p>I needed to set the accelerometer's delegate to nil when my scrollView deallocated. The accelerometer is a singleton that retains a reference to it's delegate, in this case my scrollViewController. When my scrollViewController popped off the stack, the reference was left hanging, crashing he app.</p> <p>Thanks to Phil Nash for the answer!</p> http://stackoverflow.com/questions/1014580/iphone-accelerometer-crashes-app/1014997#1014997 0 Answer by Alex Brown for iPhone Accelerometer crashes app Alex Brown 2009-06-18T20:23:33Z 2009-06-18T20:23:33Z <p>Simple: by setting the delegate method you have told another object (the accelerometer) that the scrollview exists.</p> <p>But did you tell it when it ceased to exist, so it could no not to send any messages to it?</p> <p>I guess not. You need to set the delegate again, to nil this time.</p>