我很感激我对这个问题的任何见解。我试图在Swift中创建一个接受符合特定协议的任何类型的泛型函数。但是,当我将符合类型传递给此方法时,我收到编译器错误,说该类不符合。
这是我的协议:
protocol SettableTitle {
static func objectWithTitle(title: String)
}
这是我所做的符合此协议的课程:
class Foo: SettableTitle {
static func objectWithTitle(title: String) {
// Implementation
}
}
最后,这是我的通用函数,它位于不同的类中:
class SomeClass {
static func dynamicMethod<T: SettableTitle>(type: T, title: String) {
T.objectWithTitle(title: title)
}
}
现在,当我调用这样的方法时:
SomeClass.dynamicMethod(type: Foo.self, title: "Title string!")
我收到以下编译错误:error: argument type 'Foo.Type' does not conform to expected type 'SettableTitle'
SomeClass.dynamicMethod(type: Foo.self, title: "Title string!")
我无法理解为什么在课程Foo
声明并实现SettableTitle
一致性时会发生这种情况。
所有这些都在Xcode 8.3(最新的非beta版)的简单操场中。任何人都能看到我在这里做错的事吗?
答案 0 :(得分:0)
您的函数期望一个实现SettableTitle
的对象,而不是一个类型。
相反,您需要执行T.Type
,它会起作用:
class SomeClass {
static func dynamicMethod<T: SettableTitle>(type: T.Type, title: String) {
T.objectWithTitle(title: title)
}
}