Passing variables between view controllers
ios, properties, uistoryboard, uistoryboardsegue, uiviewcontroller
Solution
After `performSegueWithIdentifier:sender:` your view controler will call
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
assuming your new view controller has some propertys to set:
if ([[segue identifier] isEqualToString:@"NextView"]) {
MyViewController *myVC = [segue destinationViewController];
myVC.propertyToSet = // set your properties here
}
Problem
I am using this function to switch between views in Xcode 4.3. ``` [self performSegueWithIdentifier:@"NextView" sender:self]; ``` I would like to pass some parameters between pages. How can I do that?