标签: swift swift3 swift-protocols
例如:我想在协议定义中说,符合它的类还需要子类UIView或另一个自定义类类型MyClass。这可能吗?
UIView
MyClass
答案 0 :(得分:4)
是的,你可以,只需将你的协议定义为:
protocol SomeProtocol where Self: MyClass { // protocol code here }