Is it necessary to set all declared IBOutlet and @property with retain property to nil in - (void)dealloc method ?
Will memory be consumed / wasted if I don't do so?
Assume that Automatic Reference Counting is turned OFF.
|
Is it necessary to set all declared Will memory be consumed / wasted if I don't do so? Assume that Automatic Reference Counting is turned OFF.
| |||
feedback
|
|
Your question seems to be "How do I handle a
When your view is loaded
There are two methods where you should address this pointer, and both are automatically filled in for you by First in
The second place, and the place you asked about initially is
Of course setting the pointer to | |||
|
feedback
|
|
Even without ARC it is not necessary to However, if your app uses threading, it still might be a good practice to do so as it allows other threads to easily determine whether the object in question is still available. | |||
|
feedback
|