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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T01:42:28+00:00 2026-06-11T01:42:28+00:00

Possible Duplicate: When should I call super? Is there is difference/preferred way when placing

  • 0

Possible Duplicate:
When should I call super?

Is there is difference/preferred way when placing calls to the super class methods like [super viewDidLoad] or [super init] or [super viewDidUnload]? I have seen tutorials putting them either in the first line or as the last line in a child class method. I am just wondering if there would be any dependency like if the super class method would do some setup the child could use when called upfront or if the super could do some optimizations to something the child has done when called at the end.

  • 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-06-11T01:42:30+00:00Added an answer on June 11, 2026 at 1:42 am

    My general rule of thumb is that acts of construction/creation call through super first, while acts of destruction or tearing down state happen in reverse order — super is called last. There’s rarely a need to deviate from that.

    The reason is not typically for optimization (as asked in your post), but for predictable semantics.

    Example A:

    construction:

    - (id)init
    {
      self = [super init]; // << set up super
      if (0 != self) {
        // set up self
      ...
    

    destruction:

    - (void)dealloc
    {
      [ivar release], ivar = 0; // << tear down self
      [super dealloc]; // << tear down super
    

    Example B:

    construction:

    - (void)viewWillAppear:(BOOL)pAnimated
    {
      [super viewWillAppear:pAnimated]; // << call through super first
      // now set up self
      ...
    

    destruction:

    - (void)viewDidDisappear:(BOOL)pAnimated
    {
      // tear down self
      [super viewDidDisappear:pAnimated]; // << now tear down super
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Should C++ eliminate header files? In languages like C# and Java there
Possible Duplicate: Why should I call self=[super init] I been reading a book of
Possible Duplicate: Why should the interface for a Java class be prefered? When should
Possible Duplicate: Should one call .close() on HttpServletResponse.getOutputStream()/.getWriter()? Am I responsible for closing the
Possible Duplicate: Should I Dispose() DataSet and DataTable? OP comment: I would like to
Possible Duplicate: Generating all Possible Combinations Is there a good LINQ way to do
Possible Duplicate: Who should call Dispose on IDisposable objects when passed into another object?
Possible Duplicate: Where should I call Free() function? When I used valgrind --leak-check=full --show-reachable=yes
Possible Duplicate: Why does PHP 5.2+ disallow abstract static class methods? Why can't you
Possible Duplicate: Understanding Python super() Class B subclasses class A , so in B's

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.