Why is viewDidUnload called less often than viewDidLoad?

前端 未结 3 472
醉梦人生
醉梦人生 2021-02-03 11:19

I put NSLog(@\"%@::%@\", [[self class] description], NSStringFromSelector(_cmd)); in both viewDidLoad and viewDidUnload of a view controll

3条回答
  •  迷失自我
    2021-02-03 11:37

    The viewDidLoad and viewDidUnload is not corresponding to each other.

    The viewDidUnload will only be called when you receive a memory warning. The system then will automatically call your viewDidUnload.

    In the normal case, when you push a MyViewController and pop it out. The life cycle will happens like this:

    init
    
    viewDidLoad
    
    release
    

    That means, whenever you init and push/present a view, a viewDidLoad will be called. But when you pop the view, the release will be called in normal case and viewDidUnload will be called in memory warning case.

    This is quite implicit and Apple doesn't state it clearly on the Guide. Here is some reference: Load and Unload cycle

提交回复
热议问题