使用tableviewCell时报错

错误信息:Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'UITableView (; layer =; contentOffset: {0, 0}; contentSize: {320, 1078.5}>) failed to obtain a cell from its dataSource ()'

在做tableView时,有时初心,就会出现上述的错误。

原来是在使用xib定义的cell时,没有进行注册,注册一下cell就好了!

// 注册cell

[self.tableView registerNib:[UINib nibWithNibName:@"myTableViewCell" bundle:nil] forCellReuseIdentifier:@"myTableViewCell"];

你可能感兴趣的:(使用tableviewCell时报错)