After updating to the newest Version of Xcode 4.5 for iOS6 last night, i get Warnings and Errors like this
Property 'mapAnnotation' requires method 'mapAnnotation' to be defined - use @synthesize, @dynamic or provide a method implementation in this class implementation
because of missing @synthesize Statements, and even Errors about unknown iVars if i use them.
The thing is, i thought it was not necessary to write these @synthesize statements since the last Xcode Update to 4.5 that came out with Mountain Lion, AND all my projects worked without them before i've updated Xcode last night (i've deleted a whole bunch of @synthesize statements from my files back then) It's even still in the Release-Notes:
• Objective-C @synthesize command is generated by default when using properties.
So i'm confused, am i missing a new Project-Setting that turns automatic @synthesize generation on?
But it's not even working when i create a new Project and try it