iOS开发之-[UITableView _configureCellForDisplay:forIndexPath:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3512.30.14/UITableView.m:7962错误的解决

1.代码忘记添加注释的部分
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    
   UITableViewCell *ncell = [tableView dequeueReusableCellWithIdentifier:identifierdata];
 //判断是否为空,才去执行初始化操作   
//    if(ncell == nil){
//        
//ncell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifierdata];
//    
//    }

2.也有可能是没有添加registerClass:(nullable Class)cellClass forCellReuseIdentifier:(NSString *)identifier方法

你可能感兴趣的:(iOS开发之-[UITableView _configureCellForDisplay:forIndexPath:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3512.30.14/UITableView.m:7962错误的解决)