摘要:
1、With ARC, you should use strong instead of retain and weak instead of assign when defining the properties.@interface Person : NSObject@property (nonatomic, strong) NSString *firstName;@property (nonatomic, strong) NSString *lastName;@property (nonatomic, strong) NSNumber *yearOfBirth;@property (no
阅读全文