I face this problem of retrieving a game "highscore" after someone finishes a game.
What I did was this:
I call presentModalViewController method when time reaches 0.
GameEndingViewController *gameEndingView = [[GameEndingViewController alloc] initWithNibName:@"GameEndingViewController" bundle:nil];
gameEndingView.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:gameEndingView animated:YES];
[gameEndingView release];
I want to show the score that I attained in the main gameloop in this gameEndingView that I have. However, it seems that when I use presentModalViewController method to switch view. The variable, score, that I update during the gameloop gets reseted. My whole game loop is in a view gameMainView.
Could someone explain to me about the use of presentModalViewController and how should I better solve my problem?
Thank you very much.