/** 使用ARC和不使用ARC */ #if __has_feature(objc_arc) //compiling with ARC #else // compiling without ARC #endif /** 释放一个对象 */ #define SAFE_DELETE(P) if(P) { [P release], P = nil; } 原文:https://www.cnblogs.com/CH520/p/9311329.html 标签 宏定义