I have a game with multiple levels. When one level is completed, the next level can be opened from it. I have already programmed the level to open from the previous one, but when the back button on the second level is pressed, the game goes back to the previous level. I want it to be where when the back button is pressed, the game goes back to the level select screen.

Here is my code: Level Select View Controller:

- (IBAction)button1:(id)sender {
Easy1 *controller = [[Easy1 alloc] initWithNibName:@"Easy1" bundle:nil];
controller.delegate = self;

controller.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:controller animated:YES];
}

- (void)Easy1DidFinish:(Easy1 *)controller
{
[self dismissModalViewControllerAnimated:YES];
} 

Level 1 view controller:

- (void)nextLevel(id)sender {
    Easy2 *controller = [[Easy2 alloc] initWithNibName:@"Easy2" bundle:nil];
    controller.delegate = self;

    controller.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
    [self presentModalViewController:controller animated:YES];
}    

- (void)levelSelect(id)sender{  

    [self.delegate Easy1DidFinish:self];
}

- (void)Easy2DidFinish:(Easy2 *)controller
{
    [self dismissModalViewControllerAnimated:YES];
}

Level 2 view controller is basically the same thing.

link|improve this question

50% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.