I have created a BOOL attribute in my Core Data entity called "useSystem". Additionally in order for me to get/set the data I have created an object, however whenever I try to set the synthesized BOOL I get a bus error. This is my code:
@property (nonatomic) const BOOL useSystem;
So I'm doing
[object setUseSystem:YES];
And immediately I get the bus error. Can anyone help?