ios – 子类中的Swift覆盖协议方法

前端之家收集整理的这篇文章主要介绍了ios – 子类中的Swift覆盖协议方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个基类,它实现了一个符合协议的扩展,如下所示:
protocol OptionsDelegate {
    func handleSortAndFilter(opt: Options)
}

extension BaseViewController: OptionsDelegate {
    func handleSortAndFilter(opt: Options) {
        print("Base class implementation")
    }
}

我有一个继承自BaseViewController的子类“InspirationsViewController”.我在扩展中覆盖协议方法如下:

extension InspirationsViewController {
    override func handleSortAndFilter(opt: Options) {
        print("Inside inspirations")
    }
}

当我在子类扩展中覆盖“handleSortAndFilter”函数时,我收到错误:“扩展中的延迟无法覆盖”

但是当我实现UITableView数据源和委托方法时,我没有看到类似的问题.

如何避免这个错误

解决方法

使用where子句的协议扩展.有用.
class BaseViewController: UIViewController {

}

extension OptionsDelegate where Self: BaseViewController {
  func handleSortAndFilter(opt: Options) {
    print("Base class implementation")
  }
}

extension BaseViewController: OptionsDelegate {

}

class InsipartionsViewController: BaseViewController {

}

extension OptionsDelegate where Self: InsipartionsViewController {
  func handleSortAndFilter(opt: Options) {
    print("Inspirations class implementation")
  }
}
原文链接:https://www.f2er.com/iOS/334651.html

猜你在找的iOS相关文章