Swift 给UITableView 写extension 时 报错 does not conform to protocol 'UITableViewDataSource'(示例代

Posted ZhangShengjie

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift 给UITableView 写extension 时 报错 does not conform to protocol 'UITableViewDataSource'(示例代相关的知识,希望对你有一定的参考价值。

那是因为你没有实现 数据源和代理方法 实现下就好了  

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 0
    }


    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        return UITableViewCell()
    }

 

以上是关于Swift 给UITableView 写extension 时 报错 does not conform to protocol 'UITableViewDataSource'(示例代的主要内容,如果未能解决你的问题,请参考以下文章

Swift-UITableView

使用 swift 以编程方式 UITableView

编辑- UITableView 单元格按钮动作委托- Swift 4

删除 UITableView 单元格之前发出警报 - (UIAlertController) Swift 或 Objective-C

如何使用swift在UITableView中有UITextFields时管理键盘?

在 Swift 中存储和引用绘图数据以在 UITableView 中使用的最佳方式