-[UITableView _configureCellForDisplay:forIndexPath:], /BuildRoot/Library/Ca

当使用TableView的时候下滑就会崩溃,而且僵尸断点找不到
就会报这个错误
-[UITableView _configureCellForDisplay:forIndexPath:], /BuildRoot/Library/Ca
意思是说

  • (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
    返回了一个大于0的值
    而这个值对应的cell返回的却是nil
  • (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    }
    检查一下你这个回调 得返回有问题 这个必须得返回cell

你可能感兴趣的:(-[UITableView _configureCellForDisplay:forIndexPath:], /BuildRoot/Library/Ca)