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

  • SEARCH
  • Home
  • 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 954199
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T00:10:29+00:00 2026-05-16T00:10:29+00:00

Do I have to release my UI objects that I declared as IBOutlets with

  • 0

Do I have to “release” my UI objects that I declared as IBOutlets with property attributes “retain” and “nonatomic”? I ask because I have a UI var declared as so…

@interface MyViewController : UIViewController 
{
IBOutlet UILabel *lblStatus;
}

@property (retain, nonatomic) IBOutlet UILabel *lblStatus;

@end

and my dealloc like so…

- (void)dealloc 
{
  //[lblStatus release];
  [super dealloc];
}

and with the lblStatus UI var commented out, Instruments doesn’t seem to detect any leaks when I pop the view off the navigation stack.

Thanks in advance for your help!

  • 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-16T00:10:30+00:00Added an answer on May 16, 2026 at 12:10 am

    Since they’re retained, yes, you are responsible for releasing them. Usually, with view controllers, that should happen in -viewDidUnload, like so:

    - (void)viewDidUnload
    {
        self.lblStatus = nil;
        [super viewDidUnload];
    }
    

    (Setting the property’s value, with a synthesized retain accessor, will release the old value before setting the instance variable to the new value.)

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

Sidebar

Related Questions

I have an object Foo that has an NSNumber property which is declared like
I have an NSString declared as @property (nonatomic,copy) NSString *text in a class. When
I know that if I retain an IBOutlet by using property then I have
I have an object in my app that is declared as an instance var.
I have an NSMutableArray property defined in my Brain model. @property (retain, nonatomic) NSMutableArray
I'm using spring ws 2.0.2.RELEASE I have a web service that creates a sales
I have just installed that latest stable release of TortoiseSVN on Windows Server 2003
I have a category on an existing class that adds a property and a
Newbie question. I have a NSMutableArray that holds multiple objects (objects that stores Bezier
I have a block of code that adds an object to an array declared

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.