我需要使用另一个视图控制器,performSegueWithIdentifier
但我还需要删除我当前所在的视图控制器。我该怎么做,我已经尝试过,但它不起作用:
[self performSegueWithIdentifier:@"next" sender:self];
[self dismissViewControllerAnimated:NO completion:nil];
//tried the other way, but it doesn't work either
[self dismissViewControllerAnimated:NO completion:nil];
[self performSegueWithIdentifier:@"next" sender:self];
看起来没有任何简单的方法可以做到这一点?我有 4 个视图控制器,它们是这样连接的,我想从游戏结束到高分。
menu-->game----->gameover
menu-->highscore