iOS 5 Black screen after segue
I have an iOS 5 application with a storyboard and two scenes. Scene 1 is a selection list while Scene 2 shows details for each selection In Scene 1 I need to pass a variable and I do that with: //Handles the selection -(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath { Guests *myGuests =[guestList objectAtIndex:[indexPath row]]; selectedGuest = [[NSString alloc] initWithFormat:@"You have selected %@", myGuests.guestID]; [self performSegueWithIdentifier:@"TGG" sender:self]; } -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id