I have this model class, where I set a BOOL property in the setter of another property. But, as you can see in the screenshots, I cannot set it. Despite sending YES to the property, the setter gets a NO. This also happens, if I send a YES from another class and not just from within 'self'. The class itself is instantiated, so 'self' is not nil. I also checked, that the setter is always called from the main thread. And it also makes no difference, if I use an instance variable instead of a property.
The BOOL property is defined as
@property (nonatomic, assign) BOOL downloaded;
Here are the screenshots:
All help is greatly appreciated! Thanks!