As everyone knows, XCode 7 now has a feature of defining NSManagedObject subclass properties into an Extension (example: Event+CoreDataProperties.swift). But in my case I use primitive types and when I run the app in simulator and attempt to set the primitive property (example: event.status = 2), the app crashes with EXC_BAD_ACCESS(code=1, address=0x28).
However if I copy these properties from the extension to the class Event file - everything works fine. Not sure if this is an expected behavior or a bug.
Any pointers will be deeply appreciated.