-(IBAction)pushToNextView:(id)sender
{
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
ListOfValuesViewController *listOfValues = (ListOfValuesViewController *)[storyboard instantiateViewControllerWithIdentifier:@"ListOfValues"];
listOfValues.selectedArray = selectedArray;
[self.navigationController pushViewController:listOfValues animated:YES];
}
No comments:
Post a Comment