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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T05:54:33+00:00 2026-06-06T05:54:33+00:00

I am trying to do a class extension and calling the extended method from

  • 0

I am trying to do a class extension and calling the extended method from a generic method. I’m just wondering if it’s possible to do it? Below is my code.

ClassA.h:

@interface ClassA : NSObject

-(void) method;

ClassA.m:

#import "ClassA.h"

-(void) method{
    NSLog(@"do A");
}

ClassB.h:

@interface ClassB : ClassA

-(void) method;

ClassB.m:

#import "ClassB.h"

-(void) method{
    NSLog(@"do B");
}

and in MainClass.m

-(void) doMethod {
    ClassA *class = [[ClassB alloc] init];
    [class method];
}

I tried to do something like this, but nothing was print out. Is it possible to do this? and will it print out “do B”??

  • 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-06T05:54:34+00:00Added an answer on June 6, 2026 at 5:54 am

    Your code compiles and runs fine (minus a small typo in @interface ClassA.h that should be @interface ClassA):

    cristi:tmp diciu$ cat test.m
    #import <Cocoa/Cocoa.h>
    
    @interface ClassA : NSObject
    - (void) method;
    @end
    
    @interface ClassB : ClassA
    -(void) method;
    @end
    
    @implementation ClassA
    -(void) method{
        NSLog(@"do A");
    }
    @end
    
    @implementation ClassB
    -(void) method{
        NSLog(@"do B");
    }
    @end
    
    int main()
    {
        ClassA *class = [[ClassB alloc] init];
        [class method];
    }
    cristi:tmp diciu$ gcc test.m -framework Cocoa
    cristi:tmp diciu$ ./a.out 
    2012-06-21 15:04:22.652 a.out[14408:707] do B
    

    Apple’s Objective-C docs contain a chapter on how inheritance works that is available online here.

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

Sidebar

Related Questions

I'm trying to create an extension method in C# for the HtmlHelper class. I've
I have an extension method I'm trying to make generic, for message passing. public
Hi I am trying to get RecursiveDirectoryIterator class using a extension on the FilterIterator
I was trying to create an extension that could slice any array-like class (since
I'm doing the HelloPoly example from the Stanford class and trying to disable the
I'm trying to add an extension method to my MVC 2 project without success
Trying to set up an extension method in .Net 3.0 using generics and I
I'm trying to write an extension method that will add the function HasFactor to
I am trying to get class name with the extension (e.g. Employee.cs or Employee.aspx.cs)
I'm trying to create a Nautilus extension in C, but there are just Python

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.