iOS ARC有效时必须遵守的规则

ARC有效必须遵守的规则:

  1. 不能使用 retain/release/retainCount/autorelease
  2. 不能使用NSAllocateObject/NSDeallocateObject
  3. 必须遵守内存管理的方法命名规则
  4. 不要显示调用delloce
  5. 使用@autoreleasepool块替代NSAutoreleasePool
  6. 不能使用区域(NSZone)
  7. 对象型变量不能作为C语言结构体(struct/union)的成员
  8. 显示转换'id'和’void *‘

你可能感兴趣的:(iOS ARC有效时必须遵守的规则)