关于ARC的使用

//在必须要求使用ARC的文件,前边加入验证ARC的宏,来提示用户使用ARC

#import <Availability.h>

#if !__has_feature(objc_arc)

#error This library requires automatic reference counting

#endif

关于ARC的使用

在起用ARC的项目中,排除一些不需要使用ARC的文件,在compiler flags中加-fno-objc-arc标识

在未起用ARC的项目中,排除一些需要使用ARC的文件,在compiler flags中加-fobjc-arc标识


更多介绍:

https://developer.apple.com/library/ios/#releasenotes/ObjectiveC/RN-TransitioningToARC/Introduction/Introduction.html

你可能感兴趣的:(关于ARC的使用)