我試圖爲使用SpriteBuilder創建的遊戲製作排行榜。我有以下代碼。在Cocos2d 3項目中呈現GKGameCenterViewController
if (gameCenterController != nil)
{
gameCenterController.gameCenterDelegate = self;
gameCenterController.viewState = GKGameCenterViewControllerStateLeaderboards;
UIViewController *vc = self.view.window.rootViewController;
[vc presentViewController: gameCenterController animated: YES completion:nil];
}
然而,在的UIViewController * VC線,我不斷收到以下錯誤,「財產‘查看’不是類型的對象MainScene *'。
我一直在尋找小時內發現,沒有人知道一個解決方案嗎?
實際上這可以被壓縮爲:[CCDirector sharedDirector](CCDirector是cocos2d的UIViewController) – LearnCocos2D