我正在使用iOS7。我已经连接了一个高分按钮,所以当你按下它时,它会将你带到游戏的排行榜。它成功地把我带到了排行榜,但是当我按下排行榜右上角的“完成”按钮时,它并没有把我带回应用程序。它什么都不做。我怎样才能解决这个问题?这是我的高分按钮方法的代码:
- (IBAction)highscoresButtonPressed:(id)sender
{
GKGameCenterViewController* gameCenterController = [[GKGameCenterViewController alloc] init];
gameCenterController.viewState = GKGameCenterViewControllerStateLeaderboards;
[self presentViewController:gameCenterController animated:YES completion:nil];
}