如何获取正在iphone中玩游戏的游戏中心朋友列表。
答案 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.
}
} ];