I am new to swift and I have a problem when I try to import data using magic notation, with objective C it works like a charme:
let importedUser = User.MR_importFromObject(dic) as! User
I get EXC_BAD_ACCESS , I try to include zombie objects in vain. apparently it falls here:
results = [context executeFetchRequest:request error:&error];
For me, the context is not null.
source
share