0

请帮助我使用 UITableViewCells。

我遵循了许多教程和网站,但没有解决我的问题。

我试图制作一个 simpleCustomCells 应用程序,但数据未加载到表视图中。

1.我有一个表格视图控制器:

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

if (cell == nil) {
    NSArray *nib = [NSArray arrayWithArray:[[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil]];

    for(id obj in nib)
    {
        if([obj isKindOfClass:[UITableViewCell class]])
        {
            cell = (CustomCell *)obj;
        }
    }    
}


cell.label.text = @"hello";

return cell;
}

也试过

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

“内if(cell==nill)

2.我创建了 CustomCell : UITableViewCell ,只有一个 UILabel 插座。更改了 CustomCell.xib 标识符的名称。

当我运行这个应用程序时,我得到了这种错误:

  Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<NSObject 0x71627f0> setValue:forUndefinedKey:]: this class
 is not key value coding-compliant for the key label.

请帮我解决这个问题,我哪里出错了。

4

4 回答 4

1

好的,我想我到了你卡住的地方。

第 1 步:断开出口UILabelxib文件的连接。

第 2 步:转到您的 xib 文件,您将在 xib 文件的左侧看到您的对象列表。

第 3 步:将鼠标指针放在写入对象的下方。你会发现Custom Cell写的。

第 4 步:按ctrl并将其拖到标签上,现在将插座连接到标签。

第 5 步:清理您的程序并再次运行它。

祝一切顺利。如果你还有疑问,我会详细说明。:)

于 2013-08-26T10:19:06.473 回答
0

我认为你应该像这样添加,我希望它有效

  static NSString *CellIdentifier = @"Cell";

  customcellCell *cell = (customcellCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];   <- set your customclass in this line.

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

    cell.label.text = @"hello";

   return cell;
于 2013-08-26T06:54:40.650 回答
0

使用以下方式:

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

        NSString *contactCellID = [NSString stringWithFormat:@"ContactCell%d%d",indexPath.row,indexPath.section];
        contactCell = (ContactListCell *)[tableView dequeueReusableCellWithIdentifier:contactCellID];

        if(!contactCell) {
            contactCell = [[ContactListCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:contactCellID];
            contactCellID = nil;
        }

        strName = @"First name";

      contactCell.lblFirstName.text = [strName capitalizedString];

      return contactCell;
    }

对于自定义单元格 .h 文件

@interface ContactListCell : UITableViewCell {

    UILabel *lblFirstName;
}

@property (strong, nonatomic) UILabel *lblFirstName;
@end

对于自定义单元 .m 文件

@implementation ContactListCell

@synthesize lblFirstName;

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
 self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {

    lblFirstName = [[UILabel alloc]initWithFrame:CGRectMake(kxiPadFirstNameCellLandscape, kyiPadFirstNameCellLandscape, kiPadFirstNameCellWidthLandscape, kiPadFirstNameCellHeightLandscape)];
                lblFirstName.backgroundColor= [UIColor clearColor];
                lblFirstName.numberOfLines = 0;
                lblFirstName.textColor = kCustomCellFontColor;
                [self.contentView addSubview:lblFirstName];

    }
    return self;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

@end
于 2013-08-26T07:18:27.527 回答
-1

为什么不给你的单元格一个标识符并用 dequewithreusableidentifier 实例化它呢?

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


CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

if (cell == nil) {
    cell = [[AanbodTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}

cell.Label.text =@"Hello"


return cell;
}

我还会参考这个非常好的教程http://www.appcoda.com/customize-table-view-cells-for-uitableview/

于 2013-08-25T08:31:36.050 回答