How do you release a shared accelerator instance on the iPhone? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T00:29:39Zhttp://stackoverflow.com/feeds/question/740519http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/740519/how-do-you-release-a-shared-accelerator-instance-on-the-iphone0How do you release a shared accelerator instance on the iPhone?Jeffrey Berthiaume2009-04-11T17:50:30Z2009-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#7405435Answer by Phil Nash for How do you release a shared accelerator instance on the iPhone?Phil Nash2009-04-11T18:03:40Z2009-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>