1

我想从类的初始化动态地将闭包附加到另一个方法。例如,UIViewController我想添加一个扩展,以便我可以在viewDidLoad事件中注入代码。我尝试了类似下面的方法,但它不起作用:

class BaseViewController: UIViewController, MyProtocol {

    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)

        // Setup and bind
        configure()
    }

    override func viewDidLoad() {
        super.viewDidLoad()

        // Call MyProtocol.myDidLoad but not explicitly!
    }

    override func viewWillAppear(animated: Bool) {
        super.viewWillAppear(animated)

        // Call viewWillAppear but not explicitly!
    }

}

protocol MyProtocol { }

extension MyProtocol where Self: UIViewController {

    func configure() {
        // Something like below isn't possible???
        self.viewDidLoad += myDidLoad
        self.viewWillAppear += myWillAppear
    }

    func myDidLoad() {
        // Something
    }

    func myWillAppear() {
        // Something
    }
}

是否可以实现这一点,而无需从 ? 显式调用协议函数UIViewController?我不想遍历我所有的类并为每个函数调用协议函数。这将是乏味的、冗余的代码,并且很容易被忽略。有没有更优雅的方式?

更新:

鉴于限制,下面是我能想到的唯一方法,但它使用继承而不是组合,并且仍然需要我显式调用协议扩展函数,这不是我想要做的:

class FirstViewController: BaseViewController {

}

class BaseViewController: UIViewController, MyProtocol, MyProtocol2, MyProtocol3 {

    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)

        // Configure protocols
        configure(self as MyProtocol)
        configure(self as MyProtocol2)
        configure(self as MyProtocol3)
    }

    override func viewDidLoad() {
        super.viewDidLoad()

        // Load protocols
        viewDidLoad(self as MyProtocol)
        viewDidLoad(self as MyProtocol2)
        viewDidLoad(self as MyProtocol3)
    }

    override func viewWillAppear(animated: Bool) {
        super.viewWillAppear(animated)

        // Prerender protocols
        viewWillAppear(self as MyProtocol)
        viewWillAppear(self as MyProtocol2)
        viewWillAppear(self as MyProtocol3)
    }

}

protocol MyProtocol { }

extension MyProtocol where Self: UIViewController {

    func configure(delegate: MyProtocol) {
        print("MyProtocol.configure")
    }

    func viewDidLoad(delegate: MyProtocol) {
        print("MyProtocol.viewDidLoad")
    }

    func viewWillAppear(delegate: MyProtocol) {
        print("MyProtocol.viewWillAppear")
    }
}

protocol MyProtocol2 { }

extension MyProtocol2 where Self: UIViewController {

    func configure(delegate: MyProtocol2) {
        print("MyProtocol2.configure")
    }

    func viewDidLoad(delegate: MyProtocol2) {
        print("MyProtocol2.viewDidLoad")
    }

    func viewWillAppear(delegate: MyProtocol2) {
        print("MyProtocol2.viewWillAppear")
    }
}

protocol MyProtocol3 { }

extension MyProtocol3 where Self: UIViewController {

    func configure(delegate: MyProtocol3) {
        print("MyProtocol3.configure")
    }

    func viewDidLoad(delegate: MyProtocol3) {
        print("MyProtocol3.viewDidLoad")
    }

    func viewWillAppear(delegate: MyProtocol3) {
        print("MyProtocol3.viewWillAppear")
    }
}

//Output:
//MyProtocol.configure
//MyProtocol2.configure
//MyProtocol3.configure
//MyProtocol.viewDidLoad
//MyProtocol2.viewDidLoad
//MyProtocol3.viewDidLoad
//MyProtocol.viewWillAppear
//MyProtocol2.viewWillAppear
//MyProtocol3.viewWillAppear

这违背了面向协议编程的全部目的。在 iOS 开发的范围内工作时,Swift 是否可以处理一种优雅的方法,或者 POP 在这种情况下不起作用?

4

1 回答 1

4

你想做的事情是不可能的,因为 Swift 和 Objective-C 都是单继承语言。

扩展只能添加额外的方法,它不能覆盖方法。只有子类可以覆盖现有类中的方法。考虑多个扩展覆盖同一个方法的情况——应该调用哪一个?所有这些?,如果是,按什么顺序?见钻石问题

最简单的方法是创建一个 UIViewController 子类来提供您想要的功能。尽管程序员可以创建一个符合协议的类,但没有子类化正确的超类,考虑到类和协议是在同一行输入的,这将是一个非常愚蠢的错误。

于 2016-02-26T22:29:04.023 回答