0

我正在使用iOS7。我已经连接了一个高分按钮,所以当你按下它时,它会将你带到游戏的排行榜。它成功地把我带到了排行榜,但是当我按下排行榜右上角的“完成”按钮时,它并没有把我带回应用程序。它什么都不做。我怎样才能解决这个问题?这是我的高分按钮方法的代码:

- (IBAction)highscoresButtonPressed:(id)sender
{
    GKGameCenterViewController* gameCenterController = [[GKGameCenterViewController alloc] init];
    gameCenterController.viewState = GKGameCenterViewControllerStateLeaderboards;
    [self presentViewController:gameCenterController animated:YES completion:nil];
}
4

1 回答 1

0

为完成按钮添加UIBarButton操作。

UIBarButtonItem *rightBarButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(doneAction)];

void doneAction(){ //pop view controller }

于 2014-09-17T23:57:32.333 回答