https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/GameKit_Guide/LeaderBoards/LeaderBoards.htmlによると
iOS7 で gamecenter にスコアを報告するには、
[GKLeaderboard reportScores:scores withCompletionHandler:^(NSError *error) {
//Do something interesting here.
}];
ただし、GKLeaderboard でこのメソッドへの参照が見つかりませんでした。
メソッドはここには存在しません: https://developer.apple.com/library/ios/documentation/GameKit/Reference/GKLeaderboard_Ref/Reference/Reference.html
GKLeaderboard.h には reportScores メソッドも含まれていません。
GKScore の reportScoreWithCompletionHandler メソッドを使用してスコアをレポートする以前の方法は廃止されたため、使用することに消極的です。
iOS7でゲームセンターにスコアを報告する正しい方法を知っている人はいますか?