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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T17:31:56+00:00 2026-05-15T17:31:56+00:00

I’ve a generic UIViewController on my app. All the UIViewController on the app inherits

  • 0

I’ve a generic UIViewController on my app. All the UIViewController on the app inherits from this generic one.

I’m trying to automate the deallocation and releasing of attributes and IBOutlets as properties.

I’m doing the first (attributes) on dealloc method and the second (IBOutlets as properties) on viewDidUnload.

- (void) dealloc {
  [_att1 release];
  _att1 = nil;

  [_att2 release];
  _att2 = nil;

  // ...
}

- (void) viewDidUnload {
   self.att1 = nil; // att1 is an IBOutlet
   self.att2 = nil; // att2 is an IBOutlet

   // ...
}

Is there any way to iterate all my attributes and IBOutlets to simplify this operations? I want to avoid do it for each outlet and attribute and delegate it to the generic UIViewController.

Thanks.

  • 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-15T17:31:57+00:00Added an answer on May 15, 2026 at 5:31 pm

    I’m not sure this is possible. Further, I’m not sure it’s a good idea.

    First, why it’s not possible: The IBOutlet keyword is solely for the benefit of Interface Builder. IB scans the source code (or some XCode-internal indexing of the source code) to identify the IBOutlets available in a class. I don’t believe there is any distinction between IBOutlet and regular property in the compiled code. So, even if you find a list of attributes or properties, you won’t be able to distinguish between those for -[UIView viewDidUnload] as opposed to dealloc.

    Second, why it’s not a good idea. Memory management is complex in Objective-C. The tools in Instruments can also help determine where excess memory is being allocated and the Clang static analyzer (Cmd-Shift-A in XCode) can help you find potential memory leaks from unreleased or inappropriately retained objects. Any introspection-based release automation system is certain to confuse the static analyzer, to say nothing of the other developers on your team.

    It’s a noble effort to try to automate such an error-prone task as memory management, but I think you may be better off sticking with the existing tools and waiting for the garbage collector to find its way to the iPhone instead.

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

Sidebar

Related Questions

No related questions found

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.