UITableViewCell自定义(笔尖)

时间:2011-05-08 10:18:39

标签: iphone cell

我在带有委托的nib文件中创建了一个自定义单元格。

我为自定义单元格定义了一个.h和.m:

@interface InscriptionCustomCell : UITableViewCell {

IBOutlet UILabel *titreCell;
IBOutlet UITextField *contenuCell;

}

@property(nonatomic,retain)UILabel * titreCell; @property(非原子,保留)UITextField * contenuCell;

@end

当我尝试将它与我的tableView一起使用时:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"InscriptionCustomCell";

InscriptionCustomCell *cell = (InscriptionCustomCell*) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
//[cell.textLabel setText:@"Cell"];
// Configure the cell...

if(indexPath.section ==0)
{
    [cell.titreCell setText:[model.listModuleInfoPerso objectAtIndex:indexPath.row]];
    [cell.contenuCell setPlaceholder:[model.listModuleInfoPerso objectAtIndex:indexPath.row]];
}else {
    [cell.titreCell setText:[model.listModuleInfoSupp objectAtIndex:indexPath.row]];
    [cell.contenuCell setPlaceholder:[model.listModuleInfoSupp objectAtIndex:indexPath.row]];
}
return cell;

}

我有一个错误:

reason: '-[UITableViewCell titreCell]: unrecognized selector sent to instance 0x4b5f430'

为什么呢?我的自定义单元格是自己的声明!

2 个答案:

答案 0 :(得分:1)

这是错误的:

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

您正在创建一个UITableViewCell实例,而不是您的自定义单元格。

答案 1 :(得分:1)

if (cell == nil) {
    NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"MyCell"owner:self options:nil];
    cell = [nib objectAtIndex:0];
}