tableView崩溃问题

南宫天逸
2023-12-01

Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]


这个错误时由于你返回的cell是空的,


 MyAlbumThirdCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ONE"];

  if (cell == nil)

  {

    cell = [[NSBundle mainBundle] loadNibNamed:@"MyAlbumThirdCell" owner:nil options:nil][0];

   }

 return cell;


 类似资料: