Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在ios6中卸载视图?
在 ios6 中发布视图的最佳方式是什么
previously used - (void) viewDidUnload
但现在我很困惑
您可以将它们从他们的超级视图中删除:
[view removeFromSuperview];
viewDidUnload是一种被称为卸载视图效果的方法;它不会使视图卸载。
viewDidUnload
糟糕,现在我意识到您的意思可能不同……也许您的问题是指viewDidUnload在 iOS6 下不再调用的事实,您想知道在收到内存警告时如何恢复内存。
在这种情况下,我认为唯一可用的选择是按照didReceiveMemoryWarning您过去在viewDidUnload.
didReceiveMemoryWarning