ios – 在Swift 4中无法覆盖扩展声明

我最近将我的代码迁移到 Swift 4.我遇到了一个扩展问题,即

Declarations from extensions cannot be overridden yet

我已经阅读了多篇重新评论此问题的帖子.但他们都没有接受下面描述的情景:

class BaseCell: UITableViewCell
{
    //Some code here...
}

extension BaseCell
{
    func isValid() -> String?
    {
        //Some code here...
    }
}

class SampleCell: BaseCell
{
    //Some code here...

    override func isValid() -> String? //ERROR..!!!
    {
        //Some code here...
    }
}

根据Apple的说法,

Extensions can add new functionality to a type,but they cannot override existing functionality.

但在上面的场景中,我没有在扩展中覆盖方法isValid().它在SampleCell类定义本身中被重写.不过,它正在给出错误.

解决方法

But in the above scenario,I am not overriding the method isValid() in an extension.

isValid在扩展中声明.

错误几乎说如果一个函数以这种方式声明,它就不能被覆盖.

该声明对扩展和扩展都有效.

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...