编译嵌套/链式泛型类型时出现Swiftc错误

时间:2016-10-10 03:09:58

标签: ios swift xcode generics

我正在尝试在Swift 3中实现MVP模式。

protocol View: class {

    // ...

}

class Presenter<ViewType: View> {

    // ...

}

class ViewController<ViewType: View, PresenterType: Presenter<ViewType>>: UIViewController, View {

    // ...

}

但是我编译了这段代码,我在Xcode 8.0(8A218a)中得到了这个错误:

Swiftc failed with exit code 1

你知道出了什么问题吗?任何解决方法?

谢谢!

0 个答案:

没有答案