摘要: // .h #define singleton_interface(class) + (instancetype)shared##class; // .m #define singleton_implementation(class) \ static class *_instance; \ \ + (id)allocWithZone:(struct _NSZone *)zone \ { \ ... 阅读全文
posted @ 2016-09-06 17:03 _水畔竹汐 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 宏定义,是开发过程中提高效率的有效工具。很有必要归纳一些全局通用的宏定义,以便简单高效的使用。 如下,整理了一些通用宏定义,应该是开发必备的: 阅读全文
posted @ 2016-09-06 17:02 _水畔竹汐 阅读(569) 评论(0) 推荐(0) 编辑