I'm trying to follow along the Stanford CS193p iOS programing lectures. One of the demo programs, called "Happiness" creates two UIViewControllers, a "PsychViewController" and a "HappinessViewController." It segues from the PsychViewController to the HappinessViewController using a target action method.
The following code keeps throwing this exception: "-[UIViewController setHappiness:]: unrecognized selector sent to instance"
Here's the offending code:
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"ShowDiagnosis"]) {
[segue.destinationViewController setHappiness:7];
}
}
I have searched this site and others, and the usually when this error comes up, it is because the generic UIViewController has not been correctly set to the specific view controller object used in the program, in this case the "HappinessViewController." But I have set the generic UIViewController to be a HappinessViewController using the identity inspector in IB, and I am still getting the exception. I am tearing my hair out, if anyone could help it would be much appreciated.
Try like this:
I had the same problem today and it was because my custom class was in a library. The library itself was being linked in build phases, but that in itself was not enough to pull in the class. So finally I solved it by add the following line to my AppDelegate.
This forces the linker to pull in the class. Otherwise simply linking in the library may not be enough to pull in the class unless it is referenced somewhere in the application.
Check which prepareForSegue is triggering. My problem was that 2 segues were triggering, in the current viewController and in the incoming viewController. The solution, and always a good practice is to check segues identifiers.
Cast before assigning
Make sure in your storyboard, HappinessViewController is set as the class of you VC
I tried adding a Cast and it worked for me, I had the same problem:
Let's look at the exception:
This tells you two things about the message that was unrecognized. It tells you the selector,
setHappiness:
. It also tells you the actual, runtime class of the receiver,UIViewController
.Of course,
UIViewController
has no method namedsetHappiness:
. That's why you got the exception.You wrote a subclass of
UIViewController
calledHappinessViewController
which does have asetHappiness:
method (or a read/write property namedhappiness
, which generates the method). And you intended for the receiver (the destination view controller) to be an instance of that subclass (HappinessViewController
).But the exception is telling you that the destination view controller is just a plain
UIViewController
. So even though you think you did, you probably did not set the view controller's custom class in the storyboard. Maybe you set the custom class of some other view controller, but you didn't set the class of this segue's destination.You need to set the destination view controller's custom class in the Identity Inspector, like this: