load Game Center friends and their scores into UITableView

我怕爱的太早我们不能终老 提交于 2019-12-04 19:52:07

Take a look at this tutorial by Ray Wenderlich, it explains how to display simple pictures and text in a UITableView - there are three parts and should get you working with, at least, a basic but working view.

At its very core level this is the code that does "the work" for displaying in a UITableView

- (UITableViewCell *)tableView:(UITableView *)tableView
         cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView
                             dequeueReusableCellWithIdentifier:@"MyBasicCell"];
    ScaryBugDoc *bug = [self.bugs objectAtIndex:indexPath.row];
    cell.textLabel.text = bug.data.title;
    cell.imageView.image = bug.thumbImage;
    return cell;
}

Update

Here is my code for generating leaderbord data with alias and photos, hope you can modify it appropriately but shouldnt be too different

-(void)getScoresAndAliasForLeaderboard:(GKLeaderboard *)leaderboardRequest{
    if (leaderboardRequest == nil)
    {
        leaderboardRequest = [[GKLeaderboard alloc] init];
        leaderboardRequest.playerScope = GKLeaderboardPlayerScopeFriendsOnly;
        leaderboardRequest.timeScope = GKLeaderboardTimeScopeAllTime;
        leaderboardRequest.category = @"HighScore";
        leaderboardRequest.range = NSMakeRange(1,100);
    }

    [leaderboardRequest loadScoresWithCompletionHandler: ^(NSArray *scores, NSError *error) {
        if (error != nil)
        {
            // Handle the error.
        }
        if (scores != nil)
        {
            NSMutableArray *retrievePlayerIDs = [[NSMutableArray alloc] init];

            for (GKScore *s in scores)
            {
                [retrievePlayerIDs addObject:s.playerID];

                GCLeaderboardScore *playerScore = [[GCLeaderboardScore alloc] init];
                playerScore->playerID = s.playerID;
                playerScore->score = (int)s.value;
                playerScore->rank = s.rank;
                playerScores[s.playerID] = playerScore; //playerScores is a NSMutableDictionary

                if ([s.playerID isEqualToString: leaderboardRequest.localPlayerScore.playerID]){
                    me = playerScore;
                }
            }

            if (me == nil){
                me = [[GCLeaderboardScore alloc] init];
                me->playerID = leaderboardRequest.localPlayerScore.playerID;
                me->score = leaderboardRequest.localPlayerScore.value;
                me->alias = @"Me";

                playerScores[me->playerID] = me;
            }

            [GKPlayer loadPlayersForIdentifiers:retrievePlayerIDs withCompletionHandler:^(NSArray *playerArray, NSError *error)
             {
                 for (GKPlayer* p in playerArray)
                 {
                     GCLeaderboardScore *playerScore = playerScores[p.playerID];

                     playerScore->alias = p.alias;

                     [p loadPhotoForSize:GKPhotoSizeSmall withCompletionHandler:^(UIImage *photo, NSError *error) {

                         if (photo != nil) {
                             playerScore->photo = photo;
                         }
                         else{
                             playerScore->photo = [UIImage imageNamed:@"wordpress_avatar.jpg"];
                         }
                         if (error != nil) {
                             NSLog(@"%@", error.localizedDescription);
                         }

                     }];
                 }
             }];
        }
    }];
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!