Hi,
I'm having problems setting a BOOL using @property
and @synthesize
.
I'm using @property BOOL isPaused;
And I can get it by using [myObject isPaused];
but I cannot manage to set it. I'd like to use [myObject setPaused: NO];
. I also tried @property (setter=setPaused) BOOL isPaused;
but if I'm not mistaking, then I need to write that setter myself.