So I use the @property key in my header file.
If I do that, I should use the @synthesize key in my implementation, right? But I wonder, is there an actual reason I have to do that? I'm just wondering why isn't writing @property in the header just about enough for the to code know my intentions (having the get/set methods automagically generated).
Sure, according to Why we have to synthesize? we write @synthesize to generate the get/set methods. But my question is about why isn't @property in the header just enough for this?
I ask because whenever I write @property in my header, I immediately go to the implementation and write @synthesize. So for me, the only reason @synthesize is used is to complement the @property keyword. Which seems rather redundant, and makes me assume that @synthesize wouldn't exist if it wasn't because it has other uses. What are those other uses?

@synthesizebehaves today. – Andrew Madsen Jul 24 '12 at 15:32@propertyas readonly and still use@synthesizeif you just want a getter. – MattR Jul 24 '12 at 15:35