Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This may seem strange, but I would like to do the following:

Class A

- (void)someMethod;

Class B : A

- (void)someMethod; // overrides

Class C : B

- (void)someMethod; // overrides

In class C, I would like to override a method present in the two super classes, but call only Class A's method on a [super methodName] call.

- (void)someMethod
{
  [super someMethod];  // but I want to call class A, not B
}

Possible?

share|improve this question
i am not sure but try [super [super someMethod]]; – Ankit Srivastava Dec 3 '11 at 11:40
1  
That's a code smell if I've ever smelled one. You could use isKindOfClass: in the B class method to check what kind of class is calling it. If it's C then pass it up to A. – Kirby Todd Dec 3 '11 at 11:44
@AnkitSrivastava that would call the immediate super class method – Javy Dec 3 '11 at 11:51
@KirbyTodd yes, it's a particularly nasty smell too. I can hack it but I'd hate too... – Javy Dec 3 '11 at 11:52
I did figure out a solution to my problem bu creating an accessor to a property that was originally readonly, but I'm still curious if there is a way to do this. – Javy Dec 3 '11 at 11:58
show 12 more comments

3 Answers

up vote 5 down vote accepted

Something like this should work:

// in Class C:
#import <objc/runtime.h>

- (void)someMethod
{
    // I want to call class A's implementation of this method

    IMP method = class_getMethodImplementation([ClassA class], _cmd);

    method(self, _cmd);

}
share|improve this answer
Well done, thanks Firoze – Javy Dec 3 '11 at 13:58
@Javy -- If you do that, definitely comment it well. – Hot Licks Dec 3 '11 at 14:01

Or you can do this...

id super1 = [self superclass];
id super2 = [super1 superclass];
[super2 someMethod];
share|improve this answer
I refactored the classes for this project to where it wasn't needed. Nice solution anyway. – Javy Apr 6 at 0:02

Well, you could do a hacky solution whereby you pass an integer parameter into the method which is decremented on each super call, such that each method implementation just calls its superclass method until finally you reach 0, then you actually execute the method. It's sort of like a weird form of recursion.

share|improve this answer
Yup, I'd considered something like that, but I'm hoping for a more encapsulated solution. I don't know if it's possible though. =) – Javy Dec 3 '11 at 11:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.