Skip to content

Latest commit

 

History

History
11 lines (4 loc) · 932 Bytes

7.第七题.md

File metadata and controls

11 lines (4 loc) · 932 Bytes

7.说一下控制器 View 的生命周期,一旦收到内存警告会如何处理?

当系统内存告急时,会接收到didReceiveMemoryWarning。 这是属于 ViewController 的方法,当ViewController 接收到didReceiveMemoryWarning,首先会判断当前的 ViewController 是否还显示在 window上,如果不在就会移除当前的 ViewController,销毁ViewController 上面的子控件,并执行 ViewDidUnload 方法。