1

我正在努力解决以下问题:

我用 SpriteKit 做了一个游戏。我实现了GameCenter我的游戏。有用。玩家自动登录,高分将添加到默认排行榜。但例如在“EndScreen”中,我想显示GameCenterLeaderboard.

Appledocumentation 告诉我应该使用以下代码:

- (void) showGameCenter

{

GKGameCenterViewController *gameCenterController = [[GKGameCenterViewController alloc] init];

if (gameCenterController != nil)

{

gameCenterController.gameCenterDelegate = self;

[self presentViewController: gameCenterController animated: YES completion:nil];

}

}

presentViewController不起作用。有什么办法可以从 a 切换SKScene到我的 standard ViewController。或者我怎样才能在GameCenterleaderboard触摸按钮的情况下显示?

老实说,我对编程很陌生,所以这里的这个问题对你们来说可能不是一个大问题。非常感谢您的帮助。

4

2 回答 2

3

是的,有一种方法,您可以直接从以下位置调用此代码-(void)showGameCenter

  UIViewController *vc = self.view.window.rootViewController;
  [vc presentViewController: gameCenterController animated:YES completion:Nil];
于 2014-04-15T08:01:23.227 回答
0

您可以使用通知来告诉ViewController显示排行榜。

ViewController.m

@implementation GameSceneViewController

- (void)awakeFromNib {
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(showGameCenter)
                                                 name:@"ShowLeaderboard"
                                               object:nil];
}

- (void) dealloc
{
    // If you don't remove yourself as an observer, the Notification Center
    // will continue to try and send notification objects to the deallocated
    // object.
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

.....

SKScene.m

- (void)showLeaderboard {    
        [[NSNotificationCenter defaultCenter] 
             postNotificationName:@"ShowLeaderboard"
                           object:nil
                         userInfo:nil];
}
于 2014-04-15T08:01:30.393 回答