I\'m creating an app in ios5 using storyboards. I have a tableviewcontroller embedded in a navigation controller and when you click on the cells in the tableviewcontroller s
Don't need Call:
[self performSegueWithIdentifier:@"mySegueId" sender:self];
you could use NSIndexPath *selectedRowIndex = [self.tableView indexPathForSelectedRow]; to get your selected info, in your - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{...} function.