Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UIViewController throwing unrecognized selector exception on prepareForSegue

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.

like image 465
user1790252 Avatar asked Nov 01 '12 03:11

user1790252


2 Answers

Let's look at the exception:

-[UIViewController setHappiness:]: unrecognized selector sent to instance

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 named setHappiness:. That's why you got the exception.

You wrote a subclass of UIViewController called HappinessViewController which does have a setHappiness: method (or a read/write property named happiness, 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:

set custom class in identity inspector

like image 175
rob mayoff Avatar answered Mar 28 '23 09:03

rob mayoff


I figured out the problem. Although I had correctly specified that the relevant UIViewController was a HappinessViewController, the linker, was for some reason, not linking to the correct files. The fix was to go to double click on the .xcodeproj file inside Xcode, then go to Build Phases and manually add the files under "Compile Sources."

like image 32
user1790252 Avatar answered Mar 28 '23 10:03

user1790252