gpt4 book ai didi

iphone - 游戏中心好友列表

转载 作者:行者123 更新时间:2023-12-03 20:25:36 25 4
gpt4 key购买 nike

全部

我为 Apple iOS 制作了一款游戏。现在我想在 Apple 游戏中心显示我的好友列表。

如何在 iPhone 上显示登录玩家的 Game Center 好友列表,可能使用 UIViewController(管理 ViewController)?

任何帮助将不胜感激..

谢谢...

最佳答案

要在您的应用中向您的游戏中心好友显示,您可以使用下面给出的代码。

     -(void) retrieveFriends
{
GKLocalPlayer *lp = [GKLocalPlayer localPlayer];
if (lp.authenticated)
{
[lp loadFriendsWithCompletionHandler:^(NSArray *friends, NSError *error)
{
if (friends != nil)
{
[self loadPlayerData: friends];
}

}];

}

}



-(void) loadPlayerData: (NSArray *) identifiers
{
[GKPlayer loadPlayersForIdentifiers:identifiers withCompletionHandler:^(NSArray *players, NSError *error)
{

if (error != nil)
{
// Handle the error.
}
if (players != nil)
{
// Process the array of GKPlayer objects.
}
}];

}

如需更多引用,您可以使用 Apple Game KIT 指南。下面是它的链接

http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/GameKit_Guide/Introduction/Introduction.html

希望有帮助..

关于iphone - 游戏中心好友列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8336971/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com