Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a tableviewcontroller and a detailtableviewcontroller when I pass an integer I get

-[UITableViewController setSurveyNumber:]: unrecognized selector sent to instance

Bizard thing is exact same code works for tableviewcontroller to -> uiviewcontroller

table -> table code

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
    if([segue.identifier isEqualToString:@"pushSurveyDetails"])
    {
        NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
        NSInteger row = [indexPath row];

        SurveyDetailViewController *surveyController = [segue destinationViewController];
        surveyController.surveyNumber=row;

    }
}

in SurveyDetailViewController.h

@interface SurveyDetailViewController : UITableViewController
{

}

@property int surveyNumber;

@end

SurveyDetailViewController.m

@implementation SurveyDetailViewController
@synthesize surveyNumber;
- (void)viewDidLoad
{
    [super viewDidLoad];
    NSLog(@"Survey Number is %i",surveyNumber);
}

why this error occurs?

share|improve this question
Is surveydetails.h the same one you are assuming it is when you creating SurveyDetailViewController, because it should be SurveyDetailViewController.h and .m – Srikanth Jan 10 at 17:37
it is just typo SurveyDetailViewController is surveydetails let me edit question – Mord Fustang Jan 10 at 17:40
2  
The error message indicates that [segue destinationViewController] returns a UITableViewController and not a SurveyDetailViewController. Perhaps you forgot to set the class of the controller in the storyboard file? – Martin R Jan 10 at 17:40
@MartinR you are right, I tried few times to enter class name on IB but it did not show up automatically so I have must forgotten that. I tried again and now it works, Please provide answer so I can accept it. – Mord Fustang Jan 10 at 17:45

1 Answer

up vote 0 down vote accepted

The error message indicates that [segue destinationViewController] returns a UITableViewController and not a SurveyDetailViewController as expected.

The controller class can be set in the storyboard file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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