我有通用类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 {
}