在我的项目中,我使用本教程addChildViewControllers
:http ://www.wannabegeek.com/?p=168在本教程中,情节提要上只有 3 个视图控制器。在我的项目(ARC)中,我得到了更多的视图控制器,而且我还不止一次地添加了一些在情节提要上的视图控制器。例如:
[self addChildViewController:firstViewController];
[self addChildViewController:firstViewController];
[self addChildViewController:firstViewController];
[self addChildViewController:secondViewController];
[self addChildViewController:secondViewController];
[self addChildViewController:thirdViewController];
问题是这会占用大量内存,因为它们都已加载。我的问题是如何减少这种情况?