Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3456496
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T09:44:37+00:00 2026-05-18T09:44:37+00:00

From Apple’s View Controller Programming Guide / Managing Memory Efficiently; didReceiveMemoryWarning Use this method

  • 0

From Apple’s View Controller Programming Guide / Managing Memory Efficiently;

didReceiveMemoryWarning

Use this method to deallocate all noncritical custom data structures associated with your view controller. Although you would not use this method to release references to view objects, you might use it to release any view-related data structures that you did not already release in your viewDidUnload method. (The view objects themselves should always be released in the viewDidUnload method.)

viewDidUnload

You can use the viewDidUnload method to deallocate any data that is view-specific and that can be recreated easily enough if the view is loaded into memory again. If recreating the data might be too time-consuming, though, you do not have to release the corresponding data objects here. Instead, you should consider releasing those objects in your didReceiveMemoryWarning method.

http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/BasicViewControllers/BasicViewControllers.html

  1. For didReceiveMemoryWarning, we are recommended to deallocate non-critical data structures. So, what is critical and what is non-critical?

  2. Also, it says to release what we did not already release in viewDidUnload.
    But when there is a memory warning didReceiveMemoryWarning is called and view could be unloaded then viewDidUnload is called. So, is it talking about the moving those codes to the former event’s method(didReceiveMemoryWarning) or am i missing something about the order of events?

  3. For viewDidUnload, we are recommended to care about easily recreating the data when reloading a view.
    So, if a view is in use and could not be unloaded, why will we release time-consuming data in didReceiveMemoryWarning? After those data released, when user tries to do something within the current view, then it will be time-consuming to load them too.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T09:44:38+00:00Added an answer on May 18, 2026 at 9:44 am

    First of all, these are just guidelines, so if you don’t think it makes good sense to release something in didReceiveMemoryWarning then don’t do it. But keep in mind that if your application is the one that is causing the memory warning in the first place then it will eventually just be terminated by the OS.

    Re (1): Critical vs. non-critical is entirely your call. Only you can really determine what data you’re holding that you consider critical. Though it’s probably going to be closely related to your (3), that is, something that is easily recreated is probably not too critical.

    Re (2): I don’t think the statement is in reference to the order of the calls. As you have realized, in general, viewDidUnload is going to get called after didReceiveMemoryWarning (since didReceiveMemoryWarning can cause viewDidUnload to be called). As an example, in viewDidUnload one will release references held to UI elements from a nib. So don’t also release them in didReceiveMemoryWarning.

    Re (3): If a view is in use and thus can’t be unloaded, then yes, obviously it doesn’t necessarily make much sense to release it in didReceiveMemoryWarning. However, you may actually have instances where a view couldn’t be unloaded, but is known to not be visible (not terribly normal), in which case it might make sense to unload it’s data and recreate it when the view is visible once again.

    Additionally, I agree the “Instead, you should consider…” remarks are a bit odd, but again I think the point of recommending the data be released in didReceiveMemoryWarning stems from the fact that if you’re receiving those warnings then your own app might be in danger of being terminated. So while it is currently the case that viewDidUnload probably is always called as the result of a memory warning, that may not always be the case in the future and so conceptually it makes more sense to release the data in didReceiveMemoryWarning itself. In didReceiveMemoryWarning you KNOW there is memory pressure, in viewDidUnload you may not. So while it’s true that the data will then be expensive to recreate, that might be better than having your app terminated. To the user it will appear as though the app crashed.

    My own personal approach to those methods is generally this:

    • viewDidUnload – Release any references to UI elements loaded from a nib. Release any UI elements I created myself in viewDidLoad.
    • didReceiveMemoryWarning – Release any data that is used in the presentation of the UI that I can recreate if/when viewDidLoad is called again (or some other app specific event). Do NOT release anything that I can’t possible recreate.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I noticed by looking at sample code from Apple, that they tend to design
Can i run download applications from Apple Store on iPhone simulator?
Does anyone know what end user information a developer receives from Apple regarding a
I am looking at the EAGLView files from the apple iphone sample code and
I am using some code which was originally taken from the Apple sample ViewTransitions
How do I apply 'use base' in Perl to inherit subs from some base
how can I save a java applet from a website so I can run
I'm writing some JNI code in C++ to be called from an applet on
I read that you could call JavaScript code from a Java Applet by calling
Is is possible to query the current browser from within an applet? I would

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.