Cocoa Touchでビューを変更したとき、これを使用します。
GameViewController *game = [self.storyboard instantiateViewControllerWithIdentifier:@"GameViewController"];
game.something = someValue;
game.somethingOther = someOtherValue;
[self presentViewController:game animated:NO completion:^{}];
この値を前に渡すにはどうすればよいreplaceScene
ですか?
私は今これを持っています:
[[CCDirector sharedDirector] replaceScene:[CCTransitionFade transitionWithDuration:1.0 scene:[GameLayer scene] withColor:ccWHITE]];