Swift泛型类如何从中创建一个类型对象

时间:2016-03-09 11:22:53

标签: ios swift generics

我有一个泛型类,这应该只是将模型映射到视图模型(和其他东西,但主要是这个)。

class InfoProv <M, VM: CreationableFromModel> {
    var models = [M]()
    var viewModels = [VM]()
    func generateModelView() -> VM {
        return VM(model: M)
    }
}

protocol CreationableFromModel {
    typealias Model
    init(model: Model)
}

符合协议CreationableFromModel表明视图模型必须知道如何使用模型类型创建自己。
我真的不明白如何“传递”到VM初始化模型的有效实例

1 个答案:

答案 0 :(得分:3)

您的代码中只有小问题

protocol CreationableFromModel {
    typealias Model

    init(model: Model)
}

// you need a generic constraint to create a connection between the two generic types
class InfoProv <M, VM: CreationableFromModel where VM.Model == M> {
    var models = [M]()
    var viewModels = [VM]()

    func generateModelView(m: M) -> VM {
        // you were passing type M here, you need an instance m of type M
        return VM(model: m)
    }
}