Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 11th, 2012  |  syntax: None  |  size: 0.43 KB  |  hits: 5  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How can I pass image ID to next view by using Storyboards in iOS [closed]
  2. - (IBAction) buttonPressed:(id)sender
  3. {
  4.     DestinationViewController *destinationViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"Destination"];
  5.     destinationViewController.title = @"image property";
  6.     [self.navigationController pushViewController:destinationViewController animated:YES];
  7.     [destinationViewController release];
  8. }