问题:
我为 ARC 和 No-ARC 创建了一个类,但是在 ARC 中使用 strong,在 No-ARC 中使用 retain;所以
我的代码:
#if __has_feature(objc_arc)
#define PARAMETER strong
#else
#define PARAMETER retain
#endif
@property (PARAMETER) NSString *myName;
那正确吗?非常感谢!
问题:
我为 ARC 和 No-ARC 创建了一个类,但是在 ARC 中使用 strong,在 No-ARC 中使用 retain;所以
我的代码:
#if __has_feature(objc_arc)
#define PARAMETER strong
#else
#define PARAMETER retain
#endif
@property (PARAMETER) NSString *myName;
那正确吗?非常感谢!