【发布时间】:2012-02-08 18:16:50
【问题描述】:
我想将游戏中心排行榜添加到我的应用中。
在一些 youtube 视频和其他 tut 中,我看到您需要在 itunes connect 的排行榜中输入一个类别。我在哪里这样做,因为我没有被要求这样做。
或者你能告诉我如何添加游戏中心吗?我现在做的是:
GKScore *myScoreValue = [[GKScore alloc] initWithCategory:@"moveItQuickLeaderbord"];
myScoreValue.value = Punkte;
[myScoreValue reportScoreWithCompletionHandler:^(NSError *error){
if(error != nil){
NSLog(@"Score Submission Failed");
NSLog([NSString stringWithFormat:@"%@", error]);
} else {
NSLog(@"Score Submitted");
}
}];
并且在视图中确实加载了:
[[GKLocalPlayer localPlayer] authenticateWithCompletionHandler:^(NSError *error){
if (error ==nil) {
NSLog(@"Success");
} else {
NSLog(@"Fail");
NSLog([NSString stringWithFormat:@"%@", error]);
}
}];
当我上传我的分数时,我总是收到提交分数的消息,但是如果我查看排行榜,它不包含任何值?
【问题讨论】:
标签: xcode ios5 app-store-connect game-center