对于Game Center API,ReportScore方法已过时

时间:2014-01-08 01:37:33

标签: c# xamarin.ios xamarin game-center xamarin-studio

我正在查看可用的单点触控示例,对于PlayerModel class,它有此代码(第55行):

GKScore score = new GKScore (storedScores.ValueAt ((uint)index));
score.ShouldSetDefaultLeaderboard = true;
if (score == null)
    return;

score.ReportScore (new GKNotificationHandler( (error) => ..

然而,Xamarin Studio表示ReportScore已经过时。但是,我发现iOS 7上仍然使用这种方法的博客。这是报告分数的正确方法,还是有替代方法?