Created
June 18, 2014 15:33
-
-
Save mikeabdullah/31cdf36f5e60a36b2d80 to your computer and use it in GitHub Desktop.
Passing along toolbar items during a segue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { | |
UIViewController *destination = segue.destinationViewController; | |
destination.toolbarItems = self.toolbarItems; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment