I was converting a code from non-ARC to ARC, and removing some unnecessary @synthesize calls. One specific class started issuing warnings for some properties:
Class.h
@property (strong, nonatomic) NSString *xyz;
but when building, I get the warning.
Property 'xyz' requires method 'xyz'to be defined - use @synthesize, @dynamic or provide a method implementation in this class implementation
I thought that using Xcode 4.6 and and Default Apple LLVM compiler 4.2, the @properties should be auto-synthesized.
How do I tell the compiler to auto-synthesize the property? Do I have to use a specific project configuration to remove this warning?