0

我正在尝试将 RxSwift/RxDataSource 与 TableView 一起使用,但我无法为 configureCell 分配现有函数。下面的代码:

import UIKit
import RxSwift
import RxCocoa
import RxDataSources

class BaseTableViewController: UIViewController {
    // datasources
    let dataSource = RxTableViewSectionedReloadDataSource<TableSectionModel>()
    let sections: Variable<[TableSectionModel]> = Variable<[TableSectionModel]>([])
    let disposeBag: DisposeBag = DisposeBag()

    // components
    let tableView: UITableView = UITableView()

    override func viewDidLoad() {
        super.viewDidLoad()
        setupUI()
        setDataSource()
    }

    func setupUI() {
        attachViews()
    }

    func setDataSource() {
        tableView.delegate = nil
        tableView.dataSource = nil
        sections.asObservable()
            .bindTo(tableView.rx.items(dataSource: dataSource))
            .addDisposableTo(disposeBag)
        dataSource.configureCell = cell
        sectionHeader()
    }

    func cell(ds: TableViewSectionedDataSource<TableSectionModel>, tableView: UITableView, indexPath: IndexPath, item: TableSectionModel.Item) -> UITableViewCell! {
        return UITableViewCell()
    }

    func sectionHeader() {

    }
}

Xcode 抛出以下错误:

/Users/.../BaseTableViewController.swift:39:36:无法分配类型“(TableViewSectionedDataSource,UITableView,IndexPath,TableSectionModel.Item)-> UITableViewCell!”的值 输入“(TableViewSectionedDataSource,UITableView,IndexPath,TableSectionModel.Item)-> UITableViewCell!”

错误被抛出

dataSource.configureCell = 单元格

你有什么主意吗?

谢谢

4

1 回答 1

0

您只需要从单元方法的!返回类型中删除。UITableViewCell!

func cell(ds: TableViewSectionedDataSource<TableSectionModel>, tableView: UITableView, indexPath: IndexPath, item: TableSectionModel.Item) -> UITableViewCell {
    return UITableViewCell()
}

通过这种方式,您的函数变得与 RxDataSource 的 configureCell 属性所期望的类型兼容:

public typealias CellFactory = (TableViewSectionedDataSource<S>, UITableView, IndexPath, I) -> UITableViewCell

我个人更喜欢以下初始化语法configureCell

dataSource.configureCell = { (_, tableView, indexPath, item) in
    let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
    // Your configuration code goes here
    return cell
}
于 2017-03-19T14:31:51.410 回答