web-dev-qa-db-ja.com

プログラムでTableViewセルに画像を追加する

サーバーから情報を取得し、データをテーブルビューに公開するUITableViewがあります。各セルの内部には、サーバーからの情報があります。

この例では、サーバーから取得する情報が1、2、3、4であるとします。

私がしたいのは、セルの左側に画像(ifステートメントが含まれているため、プログラムで)などを追加し、その隣にテキスト(1、2など)を追加することです。

基本的に、私は各セルを次のように見せたいです:

 _____________________________________
| (IMAGE) (TEXT)                      | --CELL 0
--------------------------------------
 _____________________________________
| (IMAGE) 2                           | --CELL 1
--------------------------------------

失礼なイラスト失礼します。 :)

21
Baub

どうぞ:

cell.imageView.image = [UIImage imageNamed:@"image.png"];

迅速:

cell.imageView?.image = UIImage(named: "image.png")
21
TommyG

次のように、UITableViewControllerサブクラスのUITableViewCellに画像とテキストの両方を追加できます。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    [[cell imageView] setImage:anImage];
    [[cell textLabel] setText:[NSString stringWithFormat:@"%d",[indexPath row]];

     return cell;
}

ImageView、textLabel、detailTextLabelなど、UITableViewCellには、組み込みのプロパティがいくつかあります。詳細については、 テーブルビュープログラミングガイド を参照してください。

8
Christopher A

最初の回答のSwift 2.0バージョンは次のとおりです。

cell.imageView?.image = UIImage(named: "image.png")
5
meh-uk

UITableViewCellオブジェクトには imageView プロパティがあります。この画像ビューの画像を設定するだけで、適切な場所に画像が自動的に表示され、その隣にタイトルが表示されます。

4
jtbandes
// create a rectangle box for image view

UIImageView *iconImage = [[UIImageView alloc] init];
iconImage.frame = CGRectMake(12,4,53.5,53.5);

// Create a label for cells
UILabel *cellName = [[UILabel alloc] initWithFrame:CGRectMake(75,18,200,20)];
cellName.font = [self fontForBodyTextStyle];

NSString *cellNameStr = [NSString stringWithFormat:@"%@",self.tableCellNames[indexPath.row]];

// Select path row tab actions
switch (indexPath.row) {
    case 0:

        cellName.text = cellNameStr;
        iconImage.image = [UIImage imageNamed:@"condition.png"];
        [cell.contentView addSubview:iconImage];
        [cell.contentView addSubview:cellName];

        break;

    case 1:
       cellName.text = cellNameStr;
        iconImage.image = [UIImage imageNamed:@"videos.png"];
        [cell.contentView addSubview:iconImage];
        [cell.contentView addSubview:cellName];
        break;

    case 2:
        cellName.text = cellNameStr;
        iconImage.image = [UIImage imageNamed:@"provider.png"];
        [cell.contentView addSubview:iconImage];
        [cell.contentView addSubview:cellName];
        break;

    case 3:
        cellName.text = cellNameStr;
        iconImage.image = [UIImage imageNamed:@"info.png"];
        [cell.contentView addSubview:iconImage];
        [cell.contentView addSubview:cellName];
        break;

    default:
        NSAssert(NO, @"Unhandled value in cellForRowAtIndexPath");
        break;
}
0
Vinod Joshi