Enable the missing @synthesize warning in Xcode 4.4

I want to return an Xcode 4.3 warning about missing @synthesize commands. I have a CI environment that has not yet upgraded to Xcode 4.4 and without warning in my Xcode 4.4. I forget to do this all the time, and then to go back and fix it once my XIode 4.3 CI environment has built IPA testing.

Please tell me there is a way to get this back.

+8
xcode
source share
1 answer

Compiler warning for implicitly synthesized properties: -Wobjc-missing-property-synthesis . If you enable it, you will receive warnings for declared properties without the corresponding @synthesize or @dynamic . I find this very useful.

Xcode assembly parameter name: CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS or in the Implicit Synthesized Properties assembly settings user interface.

+8
source share

All Articles