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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T08:30:33+00:00 2026-06-09T08:30:33+00:00

I have a base class called BaseClass . Many classes derived from the BaseClass

  • 0

I have a base class called BaseClass . Many classes derived from the BaseClass namely SubClass1 , SubClass2 and SubClass3.

@interface  BaseClass: NSObject{
}
-(void)configure;
@end;

@implementation
-(void)configure{
NSLog(@"This needs to log from which sub class this method was called");
}
@end;

The configure method can be called by creating instances of the subclasses or within the implementations of them.

I need to know from which subclass this method was called.

Is this possible?

  • 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-09T08:30:43+00:00Added an answer on June 9, 2026 at 8:30 am

    No. Methods have no way of knowing from which other object’s method they are being called. There’s not even the concept of a caller’s identity. Methods can be called from a C function where there is no caller object at all.

    I need to know from which subclass this method was called.

    That being said, you probably just want to know of which (derived) class an object is:

    NSLog(@"My class: %@", NSStringFromClass([self class]));
    

    2014 Addendum: There’s a gnu extension __builtin_return_address that might be used for this purpose. Mike Ash shows how to use it to extract a callers symbol name (see “Caller Inspection”). I still think that the whole approach is a bit fragile and should only be used for debugging.

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

Sidebar

Related Questions

I have an abstract base class from which many classes are derived. I want
I have a base class called Items and 3 derived classes, and within the
I have a base class called Component which has a number of classes derived
I have a base class called Mijloc_transport and 2 derived classes called Masina and
Suppose I have a baseclass called IMessage, and lots of derived message classes. In
I have a base and derived class called Node which form elements of a
I have a stateless, abstract base class from which various concrete classes inherit. Some
I have a base class called Geometry from which there exists a subclass Sphere
I have two Objective-C classes and one is derived from the other as @interface
If I have a polymorphic base class called Base as well as classes Derived1

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.