what does mean "unrecognized selector sent to instance" in xcode

link|improve this question
feedback

5 Answers

It means, method is not defined or on the other-way, calling a method on the wrong object.

classic example of this error is missing of ':' in selector call.

UIBarButtonItem *doneBtn = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self
                action:@selector(DatePickerDoneClick)];

Here,

action:@selector(DatePickerDoneClick:)

is expected rather than

action:@selector(DatePickerDoneClick)
link|improve this answer
feedback

It means that you have called a method on an object which does not support that method.

The reason it says 'unrecognised selector' is that method invocation is implemented by a message sending mechanism. The part of the message that contains the method name is called the selector.

link|improve this answer
feedback

I think this error is due to calling a function in class which is not declared in the class.

link|improve this answer
feedback

I think it's when you call a selector on instance of method that doesn't belong to this instance. maybe I'm wrong I'm not sure, it's been a while since I've coded anything in xcode.

link|improve this answer
feedback

In my case it means I did not understand (for two days) a very simple requirement of the handler (selector, function): I had left off the ...:(NSNotification*)notification... in my selector (function).

In the end it is just a self.stupidMistake (or programming tired while trying to understand a new thing in iOs/xCode). I read the docs at apple, I read many, many here at stackoverflow and read all kinds of other pages from the search results and just kept overlooking the fact that I had: in the viewDidLoad:

[[NSNotificationCenter defaultCenter] addOberserver:self selector:@selector(myHandler:) name:@"UIApplicationWillResignActiveNotification" object:nil];

in the .h (declaration) and .m (real code) I had invented:

-(void)myHandler { ... }

This generated the unrecognized selector sent to instance (crash and debug output) at runtime (no errors or warnings in xcode). Then I spent almost two whole days trying to figure out the error and the error was:

-(void)myHandler:(NSNotification*)notification { ... }

Hope it helps anyone else stuck - it is a syntax thing (your Selector or Handler or Function or whatever you want to call it) must take a (NSNotification*) 'object' as a parameter whether you use it or not; and xcode (4.2 w/iOs SDK 5.0) does not generate any errors or warnings about this 'mistake'.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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