Xcode error: Auto property synthesis is synthesizing property not explicitly synthesized

ios, xcode

Solution

Try to change 'implicit synthesized properties' flag in Project Build Settings

Problem

Have added two properties in a .h file: ``` @property (assign, nonatomic, readonly) float weightInLbs; @property (strong, nonatomic, readonly) NSDate *date; ``` They generate this Xcode error: Auto property synthesis is synthesizing property not explicitly synthesized Am running Xcode 5.1 and am targeting iOS 7.1. What does this mean, and what do I need to do about it?

Original source