When you dismiss a modal view controller is that view controller object destroyed ?
Also if you represent the same view controller again does it load from fresh - e.g is the "view did load" and "init" method called ?
|
When you dismiss a modal view controller is that view controller object destroyed ? Also if you represent the same view controller again does it load from fresh - e.g is the "view did load" and "init" method called ? |
|||
|
|
|
Releasing objects is your own responsibility, so you should release the view controller yourself, either after calling presentModalViewController, or sometime later (not recommended) For example:
Calling dismissModalViewController later on will release the retained controller automatically. |
|||||||||||
|