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 (nonatomic, strong) Person *spouse;
@end

2、ARC forbids 'dealloc','release','autorelease' key words, these words shouldn`t be explicitly invoked!

For instance,[super dealloc] [str release] are not permitted.

3、When you use [[AClass alloc] init], you don`t need to release it.

- (void)takeLastNameFrom:(Person *)person {

    NSString *oldLastname = [self lastName];

    [self setLastName:[person lastName]];

    NSLog(@"Lastname changed from %@ to %@", oldLastname, [self lastName]);
//oldLastname will stay alive until NSLog is runned
}

4、

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-13
  • 2022-01-18
  • 2022-12-23
  • 2021-04-12
猜你喜欢
  • 2022-12-23
  • 2021-11-23
  • 2021-09-05
  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案