Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Oliver Ni
7,284 Pointspass data over segue
I need help.
I am trying to perform a manual segue, but I also need to send some data over to the destination view controller.
How can I do this?
2 Answers
Oliver Ni
7,284 PointsUse the prepareForSegue:sender: method to pass data from the source to destination view controller:
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:...]) {
MyViewController *controller = (MyViewController *)segue.destinationViewController;
controller.myProperty1 = ...;
controller.myProperty2 = ...;
}
}
Oliver Ni
7,284 Pointsnever mind i found out
Eric Ellenbrook
9,006 PointsEric Ellenbrook
9,006 PointsYou should mark your answer as the best answer so other users can see that it's the right way of going about it! :)
Eric Ellenbrook
9,006 PointsEric Ellenbrook
9,006 PointsYou should mark your answer as the best answer so other users can see that it's the right way of going about it! :)