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 6052159
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:53:51+00:00 2026-05-23T07:53:51+00:00

For a view controller, any outlets that you set in Interface Builder must be

  • 0

For a view controller, any outlets that you set in Interface Builder must be released
and set to nil in viewDidUnload, and must also be released in dealloc.

(see: When should I release objects in viewDidUnload rather than in dealloc?)

One of the most important reasons for implementing [viewDidUnload] is that UIViewController subclasses commonly also contain owning references to various subviews in the view hierarchy. These properties could have been set through IBOutlets when loading from a nib, or programmatically inside loadView [emphasis added], for instance.

My question is, do we really need to implement viewDidUnload for subviews in the view hierarchy that are created programmatically in loadView (without Interface Builder)?

  • 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-23T07:53:52+00:00Added an answer on May 23, 2026 at 7:53 am

    It depends how you created them and if you need to reference them elsewhere.

    For example:

    - (void)loadView
    {
        [super loadView];
    
        UIButton *someButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        someButton.frame = CGRectMake(0, 0, 50, 50);
        [self.view addSubview: someButton];
    }
    

    In the above case you would not need to implement viewDidUnload because someButton is autoreleased within loadView.

    Another example:

    - (void)loadView
    {
        [super loadView];
    
        self.someButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        someButton.frame = CGRectMake(0, 0, 50, 50);
        [self.view addSubview: someButton];
    }
    

    In this example you would want to use viewDidUnload, as you have another reference to someButton hanging around. You want viewDidUnload to release that button and reset the reference so you don’t improperly use it as well as free up the memory. In this case you would also want to release the button in the dealloc method as well, in case viewDidUnload is never called.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I realise that the view/controller stuff will be different between Mac and IPhone apps
My application is pretty simple: it starts up with a view controller that holds
I've setup the view controller's view via IB. The view is set to landscape
My problem is that I cannot access any of the controls in a view
The iOS documentation says that your view controllers should release (and nil, since that's
I have a view controller with a view that uses OpenGL ES. When that
In my view controller's -viewDidLoad method, I call [myTextField becomeFirstResponder]; This works like a
A simple question: I have a Model-View-Controller setup, with Models accessing a SQL database.
What are the alternative design methods to the Model View Controller? MVC seems to
Lets say I have a view, myView, a view controller, myViewController, and some sort

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.