微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

可可 – 将Swift和init(windowNibName)中的NSWindowController子类化

我试图在Swift中启动一个基于Cocoa项目的新文档,并想创建一个NSWindowController的子类(如Apple的文档应用指南中所推荐的)。在ObjC中,你将创建一个NSWindowController子类的实例,发送initWithWindowNibName:消息,并相应地实现,调用superclasses方法

在Swift中,init(windowNibName)只能作为一个方便的初始化器,NSWindowController的指定的初始化器是init(window),它显然需要我在一个窗口中传递。

我不能调用super.init(windowNibName)从我的子类,因为它不是指定的初始化,所以我显然必须实现方便init(windowNibName),这反过来需要调用self.init(window)。但如果我有我的nib文件,如何访问nib文件的窗口发送到该初始化程序?

你需要覆盖NSWindowController(init(),init(window)和init(coder))的所有三个初始化器,或者不覆盖它们,在这种情况下,你的子类将自动继承init(windowNibName)你将能够使用超类的方便初始化构造它:
// this overrides none of designated initializers
class MyWindowController: NSWindowController {
    override func windowDidLoad() {
        super.windowDidLoad()
    }
}

// this one overrides all of them
//
// Awkwardly enough,I see only two initializers 
// when viewing `NSWindowController` source from Xcode,// but I have to also override `init()` to make these rules apply.
// Seems like a bug.
class MyWindowController: NSWindowController
{
    init()
    {
        super.init()
    }

    init(window: NSWindow!)
    {
        super.init(window: window)
    }

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

    override func windowDidLoad() {
        super.windowDidLoad()
    }
}

// this will work with either of the above
let mwc: MyWindowController! = MyWindowController(windowNibName: "MyWindow")

这在语言指南中的“初始化/自动初始化器继承”中介绍:

However,superclass initializers are automatically inherited if certain conditions are met. In practice,this means that you do not need to write initializer overrides in many common scenarios,and can inherit your superclass initializers with minimal effort whenever it is safe to do so.

Assuming that you provide default values for any new properties you introduce in a subclass,the following two rules apply:

Rule 1
If your subclass doesn’t define any designated initializers,it automatically inherits all of its superclass designated initializers.

Rule 2 If your subclass provides an implementation of all of its superclass designated initializers—either by inheriting them as per rule 1,or by providing a custom implementation as part of its deFinition—then it automatically inherits all of the superclass convenience initializers.

原文地址:https://www.jb51.cc/swift/320776.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐