我正在查看可用的单点触控示例,对于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上仍然使用这种方法的博客。这是报告分数的正确方法,还是有替代方法?
答案 0 :(得分:0)