在Swift中覆盖多个重载的init()方法

时间:2014-08-12 02:18:47

标签: swift

我正在尝试使用以下代码在Swift(Xcode Beta 5)中创建自定义NSTextFieldCell子类:

class CustomHighlightTextFieldCell : NSTextFieldCell {

    required init(coder aCoder: NSCoder!) {
        super.init(coder: aCoder)
    }

    init(imageCell anImage: NSImage!) {
        super.init(imageCell: anImage)
    }

    init(textCell aString: String!) {
        super.init(textCell: aString)
    }
}

但是,我在第2和第3 init()个声明上收到编译错误:

/Users/Craig/projects/.../CustomHighlightTextFieldCell:8:40: Invalid redeclaration of 'init(imageCell:)'
/Users/Craig/projects/.../CustomHighlightTextFieldCell.swift:17:5: 'init(imageCell:)' previously declared here

/Users/Craig/projects/.../CustomHighlightTextFieldCell:7:39: Invalid redeclaration of 'init(textCell:)'
/Users/Craig/projects/.../CustomHighlightTextFieldCell.swift:21:5: 'init(textCell:)' previously declared here

虽然这里有一些奇怪的编译器错误(我得到通常的“SourceKitService终止,编辑器功能暂时限制。”消息),似乎我在我的方法覆盖中遗漏了一些东西 - 但我不知道什么。

我假设命名参数,或者至少参数 types ,表明这里有三种不同的init()方法,但显然我错过了一个关键部分这个难题。

修改:如果我将override添加到第二个和第三个init()方法,我有一个单独的问题:

required init(coder aCoder: NSCoder!) {
    super.init(coder: aCoder)
}

override init(imageCell anImage: NSImage!) {
    super.init(imageCell: anImage)
}

override init(textCell aString: String!) {
    super.init(textCell: aString)
}

这个新问题(仅通过添加两个override关键字来调用)似乎几乎与原始问题相矛盾。

/Users/Craig/projects/.../CustomHighlightTextFieldCell.swift:17:14: Initializer does not override a designated initializer from its superclass
/Users/Craig/projects/.../CustomHighlightTextFieldCell.swift:21:14: Initializer does not override a designated initializer from its superclass

2 个答案:

答案 0 :(得分:5)

看起来您的声明(使用覆盖)应该就足够了,但是,它们似乎也需要@objc声明。这有效:

class CustomHighlightTextFieldCell : NSTextFieldCell {

    required init(coder aCoder: NSCoder!) {
        super.init(coder: aCoder)
    }

    @objc(initImageCell:)
    override init(imageCell anImage: NSImage!) {
        super.init(imageCell: anImage)
    }

    @objc(initTextCell:)
    override init(textCell aString: String!) {
        super.init(textCell: aString)
    }
}

答案 1 :(得分:3)

如您所见,您在函数中有相应的super.init(xxx),这意味着您将覆盖这些函数。所以只需添加override关键字。

override init(imageCell anImage: NSImage!) {
    super.init(imageCell: anImage)
}

override init(textCell aString: String!) {
    super.init(textCell: aString)
}