I get the compiler message: must call a designated initializer of the superclass NSManagedObject (in swift)
//-------------------------------------
class abc : NSManagedObject {
init(x:String, y:String){
super.init() // <<====== here!!
self.x = x
self.y = y
}
}
//-------------------------------------
the var(s) are declared in the extension xxxx { .... } How to initialize this superclass?