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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T15:00:15+00:00 2026-05-17T15:00:15+00:00

I have a class that has this in the initializer: @implementation BaseFooClass -(id) init

  • 0

I have a class that has this in the initializer:

@implementation BaseFooClass

-(id) init
{
     if (self = [super init])
     {
          // initialize instance variables that always need to start with this value
     }

     return self;
}

-(id) initWithSomeInt:(int) someInt
{
     if (self = [self init]) // <-- I need to make sure that I am calling BaseFooClass's init here, not SubFooClass's, does that make sense?
     {
          self.someInt = someInt;
     }

     return self;
}

@end

That is all fine and dandy. My problem is that when I implement the subclass:

@implementation SubFooClass

-(id) init
{
     return [self initWithSomeInt:0];
}

-(id) initWithSomeInt:(int) someInt
{

     if (self = [super init]) // <--- Infinite loop (stack overflow :) )
     {
          // initialize other variables
     }
}

@end

I basically need to specifically call the BaseFooClass‘s init rather than the SubFooClass‘s init.

I cannot change the way the objects are initialized, as I am converting a project from C# to use in my iPad application.

Thank you all in advance

EDIT:

Due to someone asking, here is my header:

@interface BaseFooClass : NSObject

// implicit from NSObject
// -(id) init;

-(id) initWithSomeInt:(int) someInt;

// more methods

@end

@interface SubFooClass : BaseFooClass

// implicit from NSObject
// -(id) init;

// implicit from BaseFooClass
//-(id) initWithSomeInt:(int) someInt;


@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-05-17T15:00:16+00:00Added an answer on May 17, 2026 at 3:00 pm

    Objective-C doesn’t work this way because of the way the runtime converts methods into function calls. Self is always an instance of the allocated class, even when invoking the super-class’s methods. You need to create your designated initializer for your BaseClassFoo and always go there. So you should be doing something like this:

    @implementation BaseFooClass
    
    -(id) init
    {
      return [self initWithSomeInt:0]; // redirect super class's designated initializer
    }
    
    -(id) initWithSomeInt:(int) someInt
    {
      if ((self = [super init])) // Designated initializer always calls into super class's designated initializer (in this case, NSObject's designated initializer is init
      {
        self.someInt = someInt;
      }
    
      return self;
    }
    
    @end
    
    @implementation SubFooClass
    
    // Here we don't override init because our super class's designated initializer
    // is initWithSomeInt:
    // -(id) init
    // {
    //   return [self initWithSomeInt:0];
    // }
    
    // we override this because it's our superclass's designated initializer, plus it
    // is ours as well
    -(id) initWithSomeInt:(int) someInt
    {
      if ((self = [super initWithSomeInt:someInt]))
      {
        // initialize other sub-class specific variables
      }
    }
    
    @end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class Application that my global.asax inherits from. The class has this
I have a class that has a Generic type G In my class model
I have a class that has some properties. And I want something that calculates
I have a class that has a vector of another class objects as a
Let's say I have a class that has a member called data which is
I have a base class that has a private static member: class Base {
I have an entity class that has a property with an underlying db column
Let's say I have one class Foo that has a bunch of logic in
I have a page base class that has no .aspx file and so I
I have a base class Foo that has an Update() function, which I want

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.