UITableView _configureCellForDisplay:forIndexPath:

出现这种错误原因是(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 返回cell为空

解决办法:
1.cell是否注册或者dequeueReusableCellWithIdentifier 设置不对
2.如果cell是nib自定义,可以查看xib中Identifier与代码中Identifier是否一致

你可能感兴趣的:(UITableView _configureCellForDisplay:forIndexPath:)