如何使用Swift泛型类型的Realm对象?

时间:2017-04-18 19:08:28

标签: ios swift generics realm

我有通用类Child。在某些时候,我想检查Child对象是否符合MyProtocol,我得到错误EXC_BAD_ACCESS。此时我不知道这是否与Swift或Realm库有关。

protocol MyProtocol: class {
}


class Child<O: Object>: NSObject {
  override init() {
    let _ = O() as? MyProtocol   // here I get error
  }
}


class ChildCache: Object {

}

0 个答案:

没有答案