iOS 5 中的自动内存计数(ARC)

Automatic Reference Counting (ARC) is a compiler-level feature that simplifies the process of managing the lifetimes of Objective-C objects. Instead of you having to remember when to retain or release an object, ARC evaluates the lifetime requirements of your objects and automatically inserts the appropriate method calls at compile time.


To be able to deliver these features, ARC imposes some restrictions—primarily enforcing some best practices and disallowing some other practices:

  • Do not call the retain, release, autorelease, or dealloc methods in your code.In addition, you cannot implement custom retain or release methods.
    Because you do not call the release method, there is often no need to implement a custom dealloc method—the compiler synthesizes all that is required to relinquish ownership of instance variables. You can provide a custom implementation of dealloc if you need to manage other resources. 
  • Do not store object pointers in C structures.Store object pointers in other objects instead of in structures.
  • Do not directly cast between object and nonobject types (for example, between id and void*).You must use special functions or casts that tell the compiler about an object’s lifetime. You use these to cast between Objective-C objects and Core Foundation objects.
  • You cannot use NSAutoreleasePool objects.Instead, you must use a new @autoreleasepool keyword to mark the start of an autorelease block. The contents of the block are enclosed by curly braces, as shown in the following example:
    • @autoreleasepool
    • {
    •   // Your code here
    • }

ARC encourages you to think in terms of object graphs, and the relationships between objects, rather than in terms of retain and release. For this reason, ARC introduces new lifetime qualifiers for objects, including zeroing weak references. The value of a zeroing weak reference is automatically set to nil if the object to which it points is deallocated. There are qualifiers for variables, and new weak and strong declared property attributes, as illustrated in the following examples:

// The following declaration is a synonym for: @property(retain) MyClass *myObject;


@property(strong) MyClass *myObject;


 


// The following declaration is similar to "@property(assign) MyOtherClass *delegate;"


// except that if the MyOtherClass instance is deallocated,


// the property value is set to nil instead of remaining as a dangling pointer


@property(weak) MyOtherClass *delegate;


Xcode provides migration tools to help convert existing projects to use ARC. For more information about how to perform this migration, see What's New In Xcode. For more information about ARC itself, see Programming With ARC Release Notes.


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值