0
我想GameCenter的集成到我的應用程序,但我似乎無法得到它的工作:有沒有辦法在對象GKScore中存儲int值?
- (void) reportScore {
GKScore *score = [[GKScore alloc] initWithLeaderboardIdentifier:@"High_Scores_LeaderBoard"];
[GKScore reportScores:@[score] withCompletionHandler:^(NSError *error) {
if (error != nil) {
NSLog(@"%@", [error localizedDescription]);
}
}];
}
我用上面的方法來報告分數的GameCenter。不過,我存儲在我的成績在這個INT:
extern int g_nScore;
有沒有辦法讓我g_nScore存儲爲GKScore,這樣我可以運行上面的方法?
ahh yesss對不起,謝謝! – user3413380