在xcode TableViewCell 使用Nib文件运行报错*** Assertion failure in -[UITableView _dequeueReusableViewOfType:withIdentifier:]

在TableView中使用Nib文件时, 程序编译通过, 运行程序后报错,增加断点后报错在tableView注册cell

错误信息: 

2016-07-26 20:41:49.329 AmazingLife[2628:276875] *** Assertion failure in -[UITableView _dequeueReusableViewOfType:withIdentifier:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3512.60.7/UITableView.m:6539

解决方法: 

由错误信息可以判断,方法中 func tableView(_ tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell 创建cell时失败

1.检查程序有无拼写错误,尤其是ruseindetifier 是否一致

2.由于创建了.xib文件,检查是否在程序中注册

3.代码部分没有问题,检查.xib文件,发现在cell外多添加了一个Label,导致程序报错,删除这个Label,问题解决。


在xcode TableViewCell 使用Nib文件运行报错*** Assertion failure in -[UITableView _dequeueReusableViewOfType:withIdentifier:]_第1张图片

总结: 这个问题再一次说明了细节的重要性,要特别注意小问题, 遇到问题,由报错信息, 一步一步查找问题所在,解决问题。

你可能感兴趣的:(在xcode TableViewCell 使用Nib文件运行报错*** Assertion failure in -[UITableView _dequeueReusableViewOfType:withIdentifier:])