In short, the following code calls an existing selector in the super class, and then gives an NSInvalidException:

- (void)applicationWillResignActive:(UIApplication *)application {
if ([super respondsToSelector:@selector(applicationWillResignActive:)])
{
    [super applicationWillResignActive:application];
}

This gives the following log exception:

  • *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[aAppDelegate applicationDidEnterBackground:]: unrecognized selector sent to instance 0x5b5d360'

To elaborate... I have a base application delegate (from our new company library) declared as:

I have a base application delegate class, BaseAppDelegate. It is declared as:

@interface CoAppDelegate : NSObject <UIApplicationDelegate> 

It implements:

- (void)applicationDidBecomeActive:(UIApplication *)application
{
    DebugLog(@"*** ACTIVE ****");
}

It does not implement @selector(applicationWillResignActive:) - or at least what I mean is that I have not specifically written out code for that method. It can't be found in the .h or .m file.

My app has an app delegate that inherits from CoAppDelegate as:

@interface aAppDelegate : CoAppDelegate <UIApplicationDelegate>

I implement both of the above methods as:

- (void)applicationWillResignActive:(UIApplication *)application {
    if ([super respondsToSelector:@selector(applicationWillResignActive:)])
    {
        [super applicationWillResignActive:application];
    }
}

- (void)applicationDidBecomeActive:(UIApplication *)application {
    if ([super respondsToSelector:@selector(applicationDidBecomeActive:)])
    {   
        [super applicationDidBecomeActive:application];
    }
}

When the app launches, I get the debug output "*** ACTIVE ****" - as it should.

When I send my app to the background I get that NSInvalidArgumentException stating that the responder does not exist - and it does not exist, so this is the correct exception to throw.

What I need to know is WHY does respondsToSelector give a YES when I am expecting to see a NO? What is the little subtle thing that I am missing?

link|improve this question

1  
I have to ask why you are doing this? You know the API of the base class of your class, so you know which methods it does and doesn't implement. There's no need for the tests. In fact there's no need for your implementations of these methods. – JeremyP Feb 14 '11 at 16:20
the reason is a bit convoluted, and really boils down to being so new (to iPhone, from java...) that when I can't get something to work one way, I try something else... a few reps down that cycle and I get to the above (unnecessary) code. Despite being unneeded, it still posed a question that I really wanted to understand (even thought the "real" code was fixed without using this method). In Java I could use reflection to do something similar, but the difference would be that the reflection on the super class would not include methods on the child class. So I really just wanted to understand. – Richard Le Mesurier Feb 15 '11 at 5:49
feedback

2 Answers

up vote 3 down vote accepted

Instead of [super class] you should use [self superclass]:

[[self superclass] instancesRespondToSelector:@selector(method)]
link|improve this answer
feedback

You should use instancesRespondToSelector: for the following reason stated in the documentation:

You cannot test whether an object inherits a method from its superclass by sending respondsToSelector: to the object using the super keyword.

This method will still be testing the object as a whole, not just the superclass’s implementation. Therefore, sending respondsToSelector: to super is equivalent to sending it to self. Instead, you must invoke the NSObject class method instancesRespondToSelector: directly on the object’s superclass.

Your subclass' code should look like this:

- (void)applicationWillResignActive:(UIApplication *)application {
    if ([[super class] instancesRespondToSelector:_cmd])
    {
        [super applicationWillResignActive:application];
    }
}

- (void)applicationDidBecomeActive:(UIApplication *)application {
    if ([[super class] instancesRespondToSelector:_cmd])
    {   
        [super applicationDidBecomeActive:application];
    }
}
link|improve this answer
1  
Thanks, Jacob. And a vote up for introducing me to _cmd. (and since this question is a new-guy type, heres a link to some info on _cmd to save the next guy from a google search: Secret Life of _cmd) – Richard Le Mesurier Feb 15 '11 at 5:59
@Richard You're very welcome! I figured it was being put to good use for DRY purposes, no need to wrap yourself in your own selector, just use _cmd! :) – Jacob Relkin Feb 15 '11 at 6:07
@Richard No problem at all, done! :) – Jacob Relkin Feb 15 '11 at 6:15
The code as written actually doesn't work. Unfortunately, calling [super class] still gives the class name of the self object. Which means that this code still checks basically if "self" itself responds to the selector it is already responding to. As the same documentation lower down suggests, I changed to code to directly refrence CoAppDelegate (name of super class), and finally it is working. – Richard Le Mesurier Feb 15 '11 at 6:42
feedback

Your Answer

 
or
required, but never shown

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