1

tableView でカスタム セルを表示しようとすると、エラーが発生します。セルに接続された nibFile がありますが、ここで常にスレッド sigbart を取得します

NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CellForOffers" owner:self options:nil];

理由はわかりませんが、インデックス実装時の行のセルは

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"CellForOffers";
    CellForOffers *cell =(CellForOffers *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {

        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CellForOffers" owner:self options:nil];
        cell = [nib objectAtIndex:0];


        appDC * application = [dataArray objectAtIndex:[indexPath row]];

        cell.namelbl.text=application.o_name;

        cell.descriptionlbl.text=application.o_description;

        [cell.imageView setImageWithURL:[NSURL URLWithString:application.o_image_url]];


    }

    return cell;
}
4

1 に答える 1

0

次のようなクラスでペン先を追加します...

cell = (CellForOffers *)[nib objectAtIndex:0];
于 2012-12-18T07:23:27.687 に答える