Currently I am having issues passing data since I am assuming passing data through delegates require you to presentViewController
Currently I have something like this set up
GameViewController *gameVC = [self.storyboard instantiateViewControllerWithIdentifier:@"GameViewController"];
gameVC.isTwoPlayer = isTwoPlayer;
gameVC.delegate = self;
[self presentViewController:gameVC animated:YES completion:nil];
So it's possible to sent data, but I have a navigation controller in between which I present modally
story through board which has a relationship segue
to GameViewController
, which is why I can't presentViewController
I am wondering if it possible to sent data any other way