loadView, viewDidLoad, viewDidUnload, how should these three functions be used?
Search, it's all reprinted, the rough content is as follows:
- loadView load view manually
- viewDidLoad is used for further processing after nib file loading
- viewDidUnload is a mirror of viewDidLoad
Referring to the official documentation, I gave corrections:
1. loadView
Never call this function on the fly. The view controller will call this function when the property of the view is requested and the current view value is nil. If you create the view manually, you should overload this function. If you create a view with IB and initialize the view controller, it means you use the initWithNibName:bundle: method, and at this time, you should not overload the loadView function.
The default implementation of this method is as follows: first look for information about the available nib files, and load the nib files based on this information. If there is no information about the nib files, the default implementation will create a blank UIView object, and then make this object the main view of the controller.
So, you should do the same when overloading this function. And assign the subclass view to the view property (the view you create must be a unique instance and is not shared by any other controller), and the function you overload should not call super.
If you want to further initialize your views, you should do it in the viewDidLoad function. In iOS 3.0 and later, you should overload the viewDidUnload function to release any reference to the view or the contents inside it (subviews, etc.).
The information on this online is very incomplete, especially the blue part.
2. viewDidLoad
This function is called after the controller loads the relevant views, regardless of whether these views are stored in the nib file or generated in the loadView function. In most cases, it is to do the follow-up work of the nib file.
The description of this function in online information is completely wrong.
3. viewDidUnload
This function is the opposite function of viewDidLoad. When the program memory is insufficient, this function is called () by the controller. Since the controller usually holds references to objects related to the view (here the bold view refers to the controller's view property) or other objects created at runtime, you must use this function to abandon ownership of these objects for memory recycle. But don't release data that is difficult to reconstruct (don't release the view in this function).
Usually the controller will save references to views created by the nib file, but may also save references to objects created by the loadView function. The perfect way is to use the synthesizer method:
= nil;
In this way, the synthesizer will release the view. If you do not use property, then you have to explicitly release the view yourself.
The description of this function online is vague, and reading it means not reading it.
Also: If the controller stores references to other objects and view, you have to free this memory in the dealloc method. For, you also have to set these references to nil before calling the super dealloc method.
4. Conclusion
So the process should be like this:
(loadView/nib file) to load the view into memory —> viewDidLoad function further initializes these views —> When memory is insufficient, call the viewDidUnload function to release views
—->When you need to use view, go back to the first step
Such a cycle
Thank you for reading, I hope it can help you. Thank you for your support for this site!