Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have custom control like tabbar which displays many controllers some of them also have my tabbar with other controllers, so, my app uses lots of memory because every controller is stored in memory. So I want to unload invisible controller, but I not found any method for unloading UIViewController. How can I do it?

PS. I can not use UITabBarController, really can't.

share|improve this question

3 Answers

up vote 1 down vote accepted

You don't. UIViewControllers don't get unloaded in low memory, just their views do.

This happens in didReceiveMemoryWarning on your own view controllers and gets called automatically when a low memory warning occurs.

Override this and unload anything that can be re-created in viewDidLoad.

share|improve this answer

Remove the view controllers view from it's superview and release the controller. Job done.

share|improve this answer
It is not suit, I need to keep controller data - controller load from Internet data and if loading will occurs every time user will expect. Remake to a more MVC version I can not app too big. – Tesseract Oct 18 '11 at 11:14
In that case views get automatically unloaded when passed a didReceiveMemoryWarning, but you should now clean up anything in viewDidUnload which you will recreate in viewDidLoad. – Simon Lee Oct 18 '11 at 11:19

I know it's an old thread but might be usefull for someone.

You can unload viewControllers view by calling:

[viewControllerWhoseViewYouWantToUnload didReceiveMemoryWarning];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.