CC_PROPERTY or CC_SYNTHESIZE??

Hi,

I’m wondering when something should be a property or when something should be synthesized. I thought a property was defined in the header and then synthesize was called in the *.m file, shouldn’t the macros do something similar?

Luke.

No, they are not the same as in objective-c. They are just macros designed for declaring variables and functions.
You can ignore them and declare variables and functions by yourself, and it is better for debugging.