私はiOS7を使用しています。ハイスコア ボタンを接続したので、それを押すと、ゲームのリーダーボードに移動します。リーダーボードに正常に移動しますが、リーダーボードの右上にある [完了] ボタンを押してもアプリに戻りません。それはまったく何もしません。どうすればこれを修正できますか? ハイスコアボタンメソッドのコードは次のとおりです。
- (IBAction)highscoresButtonPressed:(id)sender
{
GKGameCenterViewController* gameCenterController = [[GKGameCenterViewController alloc] init];
gameCenterController.viewState = GKGameCenterViewControllerStateLeaderboards;
[self presentViewController:gameCenterController animated:YES completion:nil];
}