小编典典

Swift:类型必须实现协议,并且是给定类的子类

swift

在Objective-C中,您可以将类型定义为给定类并实现协议:

- (UIView <Protocol> *)someMethod;

这将表明返回的值someMethodUIView实现给定协议的值Protocol。有没有办法在Swift中执行类似的操作?


阅读 592

收藏
2020-07-07

共1个答案

小编典典

您可以这样做:

protocol SomeProtocol {
  func someMethodInSomeProtocol()
}

class SomeType { }

class SomeOtherType: SomeType, SomeProtocol {
  func someMethodInSomeProtocol() { }
}

class SomeOtherOtherType: SomeType, SomeProtocol {
  func someMethodInSomeProtocol() { }
}

func someMethod<T: SomeType where T: SomeProtocol>(condition: Bool) -> T {
  var someVar : T
  if (condition) {
    someVar = SomeOtherType() as T
  }
  else {
    someVar = SomeOtherOtherType() as T
  }

  someVar.someMethodInSomeProtocol()
  return someVar as T
}

这定义了一个函数,该函数返回类型为“SomeType”和协议“SomeProtocol”的对象,并返回符合这些条件的对象。

2020-07-07