Game Center Friend List
All I made a game for the Apple iOS. Now I would like to show my friend list in Apple's Game Center. How can I show the Game Center friend list of a logged in player on an iPhone, possibly using the UIViewController (which manages the ViewControllers)? Any help would be appreciated.. Thanks... To show your Game center friends in your app you can use the below code given. -(void) retrieveFriends { GKLocalPlayer *lp = [GKLocalPlayer localPlayer]; if (lp.authenticated) { [lp loadFriendsWithCompletionHandler:^(NSArray *friends, NSError *error) { if (friends != nil) { [self loadPlayerData: friends]