How do you release a shared accelerator instance on the iPhone? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T00:29:39Z http://stackoverflow.com/feeds/question/740519 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/740519/how-do-you-release-a-shared-accelerator-instance-on-the-iphone 0 How do you release a shared accelerator instance on the iPhone? Jeffrey Berthiaume 2009-04-11T17:50:30Z 2009-04-11T18:03:40Z <p>I have created an accelerometer variable:</p> <pre><code>UIAccelerometer *objAccelerometer; </code></pre> <p>that I am associating to the sharedAccelerometer instance:</p> <pre><code>objAccelerometer = [UIAccelerometer sharedAccelerometer]; objAccelerometer.delegate = self; </code></pre> <p>When I release this view (to load a different view), the accelerometer instance causes the program to die. (If I have it commented out, I can switch between views without a problem).</p> <p>I had a similar problem with an NSTimer, but once I called:</p> <pre><code>[myTimer invalidate]; </code></pre> <p>(prior to releasing and switching the views) everything worked fine.</p> <p>How should I properly release the delegate or deallocate or release the accelerometer?</p> http://stackoverflow.com/questions/740519/how-do-you-release-a-shared-accelerator-instance-on-the-iphone/740543#740543 5 Answer by Phil Nash for How do you release a shared accelerator instance on the iPhone? Phil Nash 2009-04-11T18:03:40Z 2009-04-11T18:03:40Z <p>You don't release the shared accelerometer - you never retained it (and shouldn't) - it's a singleton.</p> <p>The accelerometer has a reference to <em>your</em> object. For it to release it just set it's delegate property to nil (because it's a property it will release its reference to your object).</p>