I have converted non-ARC project into ARC, but XCode5.0 is giving below warning for line
@property (nonatomic) NSNumber *latitude;
Warning: No 'assign', 'retain', or 'copy' attribute is specified - 'assign' is assumed
When I add strong life time qualifier then Warning goes out.
@property (nonatomic, strong) NSNumber *latitude;
Under ARC, strong is the default for object types, so why XCode is giving warning if I dont mention its a strong property?