如何在Objective C中获得游戏中心应用程序的朋友?

时间:2012-05-01 06:07:01

标签: objective-c ios game-center

如何获取正在iphone中玩游戏的游戏中心朋友列表。

1 个答案:

答案 0 :(得分:1)

使用-[GKLocalPlayer loadFriendsWithCompletionHandler:]。例如(未经测试的代码):

[[GKLocalPlayer localPlayer] loadFriendsWithCompletionHandler:
    ^(NSArray *friends, NSError *error)
    {
        if (error)
        {
            // Handle error
        }
        else
        {
            // friends is an array of player identifiers of the user's friends
            // Now would be a good time to copy or retain it.
        }
    } ];