gameCenterManager [gameCenterManager reportScore:score_value forCategory:@“123”];
不工作?每当我通过上面的行发送分数时,当我运行此applciation并打开gdb时,Missed Method就在callDeletgete中说了
我该如何解决呢?
答案 0 :(得分:1)
GKScore *scoreReporter = [[[GKScore alloc] initWithCategory:@"123"] autorelease];
scoreReporter.value = 123456;
[scoreReporter reportScoreWithCompletionHandler:^(NSError *error) {
if (error != nil)
{
// handle the reporting error
}
}];