Do I still need to set IBOutlet properties to null in viewDidUnload with ARC?
Because it still generates the following comment:
// Release any retained subviews of the main view.
|
Do I still need to set IBOutlet properties to null in viewDidUnload with ARC? Because it still generates the following comment: // Release any retained subviews of the main view. |
|||||
|
|
For IBOutlets marked as strong you still do want to nil them out in viewDidUnload. Why: When you receive a low memory notification any views not currently visible may unload themselves (calling viewDidUnload) to save memory. By nilling out your outlets you are giving up ownership and letting them be released. When the view is loaded again (when it is shown again), the outlets will be setup again and viewDidLoad will be called. |
|||
|
|
|
Well the main purpose of nilling outlet it was to do not create zombies, leaks and weird situations that could happen when the subviews have not a super view, while the view was unloaded from the view controller. Now with the latest version of Xcode if you drag a view element inside a header or in a private declaration it sets automatically the Outlet to weak (targeting iOS>=5) and also in the UPDATE I'd like to complete the answer to avoid misunderstandings (talking about iOS5 only) pay attention that IB sets outlet to weak only if the are subviews of a main view. Typically it happens in a xib containing a view from a view controller. Sometimes could happen that you need to swap two views based on some condition at runtime without creating them programmatically or in different xibs. For instance you have your main view owned by the vc, and in the same xib you create two other views that in that moment doesn't have a superview. If you try to connect them with the same technique the reference created will be |
|||||||
|
|
I'll expand on Andrea's answer here (upvote him!) because the answer isn't straight forward unless you only mean UI components, in which case they should all be weak. IBOutlets are whatever you define them. If you use:
You should nil this when unloading the parent view/window. If you do:
You don't have to nil the variable, because it will be auto zero'ed. How you nil is entirely up to you. Prior to ARC I used:
Now you have two options: either use the setter (created with with So, go ahead and do this:
or
|
|||||||||
|