Skip to content

Instantly share code, notes, and snippets.

@MaxGabriel
Created February 12, 2012 21:15
Show Gist options
  • Save MaxGabriel/1810885 to your computer and use it in GitHub Desktop.
Save MaxGabriel/1810885 to your computer and use it in GitHub Desktop.
CS 193p Graphing Calculator--Task 3: Seguing
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"graph"]) {
[segue.destinationViewController setGraphStack:[self.brain program]];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment