2012年5月2日

判断iphone的屏幕是不是retina屏幕

摘要: #define isRetina ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(640, 960), [[UIScreen mainScreen] currentMode].size) : NO) 阅读全文

posted @ 2012-05-02 14:59 周爃慧 阅读(238) 评论(0) 推荐(0) 编辑

NSLog关于Debug显示Release不显示方法

摘要: #ifdef DEBUG#define Log(format, ...) NSLog(format, ##__VA_ARGS__)#else#define Log(format, ...)#endif##__VA_ARGS__is a special preprocessor directive that lets the preprocessor know that it should fill in the variable arguments there. 阅读全文

posted @ 2012-05-02 14:55 周爃慧 阅读(146) 评论(0) 推荐(0) 编辑

导航