我在爲我清洗的UIView作爲內存沒有釋放上的UIView
UIView *get_mainview = (UIView*)[self.view viewWithTag:100];
的get_mainview添加爲UIViewController中的孩子一個UIView加載更多資源(圖片&視頻)清除它的對象,但內存不釋放。如果我寫
//IMP code to remove sbview [[get_mainview subviews] makeObjectsPerformSelector:@selector(removeFromSuperview)];
[get_mainview release];
我得到的錯誤,因爲我加入進一步其它chield到get_mainview 注 - 我不使用ARC。 我正在使用Xcode 5.0 請幫助我們如何釋放內存。
嘗試nslog保留每個對象在你的類中的數量。然後你可能知道哪個對象不會釋放。 –
實際上父元素是get_mainview,如果我正在清理它,那麼它會刪除它的所有對象child&associate child's right? –
你得到的錯誤是什麼? – Amar