标签: swift3 swift-protocols swift-extensions
您好我的目标是扩展(在swift 3中)我在框架中具有的协议以符合另一个协议
protocol SomeProtocol {} protocol SomeOtherProtocol {} extension SomeOtherProtocol: SomeProtocol {}
这里的问题是我收到一个错误:“协议的扩展'SomeOtherProtocol'不能有继承子句” 如果这不可能,我如何实现这样的事情,或者“快速的方式”是什么?