我有UIViewController
誰擁有幾個子視圖,但跟蹤每分配每個子視圖是困難的任務,因爲實際編碼器不是我的,需要處理的內存消耗。UIViewControllers ...內存管理使用子視圖
我的問題是有沒有一種方法來控制內存調用遞歸函數來刪除和釋放UIViewController
中的所有子視圖,而無需知道實際的引用名稱?
如下面的代碼:
for (UIView* subview in view){
[subview removeFromSuperView];
[subview release] ;
subview = nil;
}
什麼是錯的代碼片段你貼? – jv42 2012-01-06 10:49:16