查看它的定义NS_INLINE
似乎使用它的优势static inline
是编译器兼容性,对吗?在objective-c项目中应该NS_INLINE
总是使用而不是c函数吗?static inline
#if !defined(NS_INLINE)
#if defined(__GNUC__)
#define NS_INLINE static __inline__ __attribute__((always_inline))
#elif defined(__MWERKS__) || defined(__cplusplus)
#define NS_INLINE static inline
#elif defined(_MSC_VER)
#define NS_INLINE static __inline
#elif TARGET_OS_WIN32
#define NS_INLINE static __inline__
#endif
#endif