Skip to content

Instantly share code, notes, and snippets.

@jamessa
Created January 6, 2012 02:18
Show Gist options
  • Save jamessa/1568608 to your computer and use it in GitHub Desktop.
Save jamessa/1568608 to your computer and use it in GitHub Desktop.
#pragma mark - Storyboard
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if( [segue.identifier isEqualToString:@"DeckPicker"]) {
UINavigationController *navigationController = segue.destinationViewController;
FCSettingsViewController *settings = (FCSettingsViewController*) [navigationController topViewController];
settings.delegate = self;
settings.selectedDeck = currentDeck;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment