gpt4 book ai didi

ios - [UITableViewCell nameLabel] : unrecognized selector sent to instance

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:02:50 26 4
gpt4 key购买 nike

我想知道有没有人知道如何解决这个问题?

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UITableViewCell nameLabel]: unrecognized selector sent to instance 0x7fa9ca4936c0'

我的代码是:

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

static NSString *foldersIdentifier = @"FolderCell";

FolderCellTableViewCell *cell = (FolderCellTableViewCell *) [foldertableView dequeueReusableCellWithIdentifier:foldersIdentifier];

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

cell.nameLabel.text = [folders objectAtIndex:indexPath.row];
cell.thumbnailImageView.image = [UIImage imageNamed:[thumbnails objectAtIndex:indexPath.row]];
cell.datesLabel.text = [dates objectAtIndex:indexPath.row];

return cell;
}

一开始它运行良好,但当我尝试将 TableView 连接到 Collection View 时,这个问题开始出现并崩溃。不过,不知道它是否足够详细。我是编程界的新手,因此如果需要更多详细信息,请告诉我。

提前致谢!

最佳答案

您似乎没有使用表格单元格的子类。该错误表明您尝试使用常规的 UITableCell 实例。请确保将 Nib 或 Storyboard中的单元格类设置为 FolderCellTableViewCell,请按照以下步骤操作,它可能对您有所帮助

  1. 选择您的单元 View ,
  2. 打开检查器并转到选项卡 3。
  3. 填写“自定义类”以指向您的类 FolderCellTableViewCell

关于ios - [UITableViewCell nameLabel] : unrecognized selector sent to instance,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27291974/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com