0

NSDictionary を使用してラベルと画像を設定するカスタム UITableViewCells を持つ UITableView があります。私の問題は、サーバーから NSArray が返され、各セル (NSDictionaries) の情報が内部にあることです。すべてのセルは UITableViewCell の同じサブクラスですが、すべてのセルが異なる配列を使用する必要があります。ここにいくつかのコードがあります:

//I use this method to create the cell, and build it using the NSDictionary passed to it
+ (CategoryCell *)generateCategoryCellWithInfo:(NSDictionary *)dict;
{
    CategoryCell *cell;
    NSArray *xib = [[NSBundle mainBundle] loadNibNamed:@"CategoryCell" owner:self options:nil];
    cell = [xib objectAtIndex:0];

    if (dict != nil)
    {
        //build the cell
        cell.videoTitle.font = [UIFont fontWithName:@"FuturaStd-CondensedBold" size:17.0f];
        cell.videoTitle.text = [dict objectForKey:@"title"];

        dispatch_async(dispatch_get_global_queue(0, 0), ^(void){
            NSData *fullImageData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:[dict objectForKey:@"fullImage"]]];
            if (!fullImageData)
            {
                return;
            }
            else
            {
                dispatch_async(dispatch_get_main_queue(), ^(void){
                    [cell.contentButton setImage:[UIImage imageWithData:fullImageData] forState:UIControlStateNormal];
                });
            }
        });

        cell.numberOfViewsLabel.text = [NSString stringWithFormat:@"%@ views", [dict objectForKey:@"views"]];
    }
    else
    {
        //set placeholders
        cell.numberOfViewsLabel.text = @"1200 people viewed this";
        cell.numberOfLikesLabel.text = @"20 people liked this";
        [cell.contentButton setImage:[UIImage imageNamed:@"video-table@2x.png"] forState:UIControlStateNormal];
        cell.videoTitle.text = @"A Baby Dances in its Car Seat or Something";
    }

    return cell;
}

ここにセルが作成されます

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CategoryCellIdentifier = @"categoryCell";
    CategoryCell *cell = (CategoryCell *)[tableView dequeueReusableCellWithIdentifier:CategoryCellIdentifier];

    if (!cell)
    {
        cell = [CategoryCell generateCategoryCellWithInfo:[itemsArray objectAtIndex:0]];
        cell.delegate = self;
    }

    return cell;
}

今のところ、NSArray itemsArray の最初の NSDictionary を使用しているだけですが、itemsArray 内の異なる NSDictionary を各セルに渡したいと考えています。誰かが私を助けることができますか?

4

1 に答える 1