I created a BOOL attribute in a Core Data object called "useSystem". In addition, in order to get / set the data, I created an object, however, whenever I try to install a synthesized BOOL, I get a bus error. This is my code:
@property (nonatomic) const BOOL useSystem;
So i do
[object setUseSystem:YES]
And right away I get a bus error. Can anyone help?
source share