我已经在我的游戏中整合了游戏中心......而且它运作良好但我现在有了新的问题:P 只有一个分数是用户提交..之后,没有分数提交甚至更高,然后发布得分或更少... 知道我到底要做什么...... 问候 Haseeb
答案 0 :(得分:1)
在确定游戏中心可用后,我用它来提交分数......
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc]init];
GKScore *scoreReporter = [[[GKScore alloc] initWithCategory:gameCenterCategory] autorelease];
int64_t score1 =socre;
scoreReporter.value = score1;
[scoreReporter reportScoreWithCompletionHandler:^(NSError *error) {
if (error != nil) {
NSLog(@"Submit failed");
}
else {
NSLog(@"Score Submited");
}
}];
[pool release];