开发者

view will disappear is not firing

i am using addSubView method to add views. Did any alternative methods are there for viewWillDisappear? viewWillDisa开发者_开发问答ppear is not firing. I want to release all allocated objects when the current view get dissapear. Currently i am using dealloc method to do this. But dealloc method is firing not quickly. Since i am getting memory warings and sometimes the my app may crash itself. The main problem is with voice files.


addSubview/removeFromSuperview (these methods relate with views not view controllers) doesnt call viewWillAppear/viewWillDisappear methods. You should write release object code in dealloc() itself.
removeFromSuperview should call dealloc().


You can try to release objects in method viewDidDisappear. Then you won't wait for firing method dealloc.

Also in method viewDidDisappear you can try to remove all subviews from superview (that will call viewWillDisappear to all subviews):

NSArray *subviews = [self.view subviews];
for (UIView *view in subviews)
    [view removeFromSuperview];


release objects in viewDidUnload/viewDidDisappear and set to nil in dealloc

this might work, but you should surely look why viewWillDisappear is not called.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜