iOS12-crash错误-reason: 'UITableView failed to obtain a cell from its dataSource'

错误缘由:

cellForRowAtIndexPath函数返回了nilbash

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "reuseIdentifier", for: indexPath)

        // Configure the cell...

        return cell
    }
复制代码

解决方法:

检查:ide

1.storyboard上有没有给cell加identifier函数

2.identifier有没有写错ui

3.函数自己是否是还没实现spa

4.if else返回其中一个cell时的判断错乱了code

5.想到再加视频

 

广告时间:小弟的iOS12零基础视频教程(每章皆可试听):

m.study.163.com/provider/48…htm

相关文章
相关标签/搜索