I am having trouble resolving this issue. I have declared a segue via the storyboard and I'm trying to call it from a custom TableViewCell I wrote to handle the dynamic prototype.
- (IBAction)clickedPhoto:(id)sender {
[self performSegueWithIdentifier:@"PhotoDetail" sender:self];
}
I'm getting a No visible @interface for 'PhotoChoiceTableViewCell' declares the selector 'performSegueWithIdentifier:sender:'
error.
I think I've figured out that I need to call the segue from a UIView but I can't figure out how to implement the proper delegate or protocol to do this.
My UITableViewController is called InboxViewController and my UITableViewCell is called PhotoChoiceTableViewCell.
Thank you!