我正在尝试在Swift 3中实现MVP模式。
protocol View: class {
// ...
}
class Presenter<ViewType: View> {
// ...
}
class ViewController<ViewType: View, PresenterType: Presenter<ViewType>>: UIViewController, View {
// ...
}
但是我编译了这段代码,我在Xcode 8.0(8A218a)中得到了这个错误:
你知道出了什么问题吗?任何解决方法?
谢谢!