Is it possible to access the super class method of an objects super class (or grandfather)?
For instance:
GrandFatherObject : NSObject
SuperObject : GrandFatherObject
SelfObject : SuperObject
From SelfObject:
- (void)overriddenMethod
{
// For Self
someCode();
// For Parent
[super overriddenMethod];
// For GrandParent
???
}
I only have access to SelfObject (Can't modify SuperObject or GrandFatherObject)