游戏中心报告得分不起作用

时间:2011-03-15 06:24:37

标签: iphone cocos2d-iphone

gameCenterManager [gameCenterManager reportScore:score_value forCategory:@“123”];

不工作?每当我通过上面的行发送分数时,当我运行此applciation并打开gdb时,Missed Method就在callDeletgete中说了

我该如何解决呢?

1 个答案:

答案 0 :(得分:1)

GKScore *scoreReporter = [[[GKScore alloc] initWithCategory:@"123"] autorelease];
                scoreReporter.value = 123456;

                [scoreReporter reportScoreWithCompletionHandler:^(NSError *error) {
                    if (error != nil)
                    {
                        // handle the reporting error
                    }
                }];