我知道我可以访问 Score API 以在 Facebook 上存储玩家的分数。我的问题是,如果我想对多个分值进行评分,我该怎么做?
例如,我想存储 Highscore 和 Total Distance Travelled。我现在的做法是:
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
[NSString stringWithFormat:@"%d", mScore], @"score",
nil];
[FBRequestConnection startWithGraphPath:[NSString stringWithFormat:@"%llu/scores",
fbid] parameters:params HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection, id result, NSError *error)];
但这只允许我存储一个值,因为通过再次为其他值调用相同的东西,它将覆盖旧值。
任何人都知道如何存储多个值?请帮忙。