摘要: 1 // 帮助实现单例设计模式 2 3 // .h文件的实现 4 #define SingletonH(methodName) + (instancetype)shared##methodName; 5 6 // .m文件的实现 7 #if __has_feature(objc_arc) //... 阅读全文
posted @ 2014-09-26 23:13 hshd123 阅读(216) 评论(0) 推荐(0)
摘要: /** 获得颜色*/#define kGetColor(r, g, b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1]/** 导航栏默认高度*/#define NavigationBar_HEIGHT ... 阅读全文
posted @ 2014-09-26 10:05 hshd123 阅读(254) 评论(0) 推荐(0)