在我的項目中,我將本教程用於addChildViewControllers
:http://www.wannabegeek.com/?p=168在本教程中,故事板上只有3個視圖控制器。在我的項目(ARC),我得到了很多更視圖控制器,我也添加了一些視圖控制器是在故事板比once.So更多例如:使用UIPageControl和子ViewControllers進行內存管理
[self addChildViewController:firstViewController];
[self addChildViewController:firstViewController];
[self addChildViewController:firstViewController];
[self addChildViewController:secondViewController];
[self addChildViewController:secondViewController];
[self addChildViewController:thirdViewController];
,問題是,這需要多大內存因爲它們全部被加載。我的問題是如何減少這個?
爲什麼多次添加相同的視圖控制器? AFAIK'addChildViewController'只是在父視圖控制器實例和子視圖控制器實例之間創建一個關係,因此多次調用它不應該是必需的。例如,創建父 - 子關係以轉發旋轉事件。是否所有視圖控制器都可以同時顯示? –