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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:19:07+00:00 2026-05-13T06:19:07+00:00

I’ve come across a strange scenario related to class inheritance in Objective-C. Let’s say

  • 0

I’ve come across a strange scenario related to class inheritance in Objective-C.

Let’s say i have three classes A, B and C that inherit from a base class X. Classes A, B and X have the constructor:

- (id)InitWithString:(NSString*)someString andDelegate:(id<SomeProtocol>)aDelegate

the only difference being that every class uses a different protocol for the delegate.

What happens is that for A and B the compiler tries to use the method from C. A warning informs me that the protocols required by class C’s constructor is not implemented by the provided delegate. There is nothing wrong with the delegate itself, since each class has a delegate that implements the right protocol for the classes’ own constructor. Everything works fine at run time and the right functions are called for all classes.

I tried having the constructors return A*, B* or C* instead of the anonymous id, though this still doesn’t solve the problem.

The only thing that works is making a cast to the right class like this:

instanceOfA = [(A*)[A alloc] InitWithString:@"" andDelegate:aDelegate];

This seems superfluous and unnecessary. I’m probably missing something obvious here.

  • 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-13T06:19:08+00:00Added an answer on May 13, 2026 at 6:19 am

    I’m not sure how clever the analyzer actually is for these cases and suspect you simply hit one of its limitations.

    What you’re observing is the compiler seeing the object as id and picking the first method that matches the signature. Try moving the order you including your classes around and you should see that it always picks the selector that gets defined first.

    A way to get around this is to initialize the class in two steps:

    ClassA *test = [ClassA alloc];
    test = [test initWithString:@"" andDelegate:delegate];
    

    In this case, the analyzer knows test is of type ClassA and picks the right selector. It seems that it’s not so clever as to tell of what type intermediary objects are that are not assigned to a variable and then just always assumes them to be id.

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

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a French site that I want to parse, but am running into
I am doing a simple coin flipping experiment for class that involves flipping a
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I have a jquery bug and I've been looking for hours now, I can't
this is what i have right now Drawing an RSS feed into the php,

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.