标签:常用宏 define mpi ase 定义 objc 使用 code pil
/** 使用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; }
标签:常用宏 define mpi ase 定义 objc 使用 code pil
原文地址:https://www.cnblogs.com/CH520/p/9311329.html