符合通用函数中使用的协议和类的类型的变量

时间:2019-09-13 19:19:49

标签: ios swift generics protocols

我要声明一个变量

var specialVC: UIViewController & MyProtocol.

我有一个功能

func doStuff<T: UIViewController & MyProtocol> { ... }

但是,当我尝试将变量传递给doStuff时,它说UIViewController不符合MyProtocol。

class MyClass: UIViewController {

    override func viewDidLoad() {
      super.viewDidLoad()
      var specialVC: UIViewController & MyProtocol
      doStuff(specialVC)
    }

    func doStuff<T: UIViewController & MyProtocol>(_ vc: T) {}

}

错误: Argument type 'UIViewController' does not conform to expected type 'MyProtocol'

---更新---

查看Protocol doesn't conform to itself?之后,我可以创建一个扩展,该扩展指定一个符合协议的类。但是,我将无法通过此扩展程序调用doStuff()。

internal extension MyProtocol where Self: UIViewController {
     // call doStuff(self) here somehow?
}

1 个答案:

答案 0 :(得分:2)

关于您的函数,没有什么需要通用的。只需使用常规的类型和超类型机制(多态性,继承,无论您喜欢用哪种方式)。只需输入您的参数作为超类型即可;这告诉编译器它继承了超类型的所有功能。

protocol MyProtocol : UIViewController { // Swift 5 syntax
    var thingy : String { get set }
}
class MyViewController : UIViewController, MyProtocol {
    var thingy = "howdy"
}
func doStuff(_ vc: MyProtocol) {
    print(vc.title) // legal, because we know it's a view controller
    print(vc.thingy) // legal, because we know it's a MyProtocol
}