本文主要是介绍常用的Pch,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#define SCREENWIDTH [UIScreen mainScreen].bounds.size.width //宽
#define SCREENHEIGHT [UIScreen mainScreen].bounds.size.height //高
#define RGB(x,y,z) [UIColor colorWithRed:x/255.0f green:y/255.0f blue:z/255.0f alpha:1] //颜色
#define Font(x) [UIFont systemFontOfSize:x] //字号
#define Common_Distance_NavigationHeight 64 //导航栏高度
#define Common_Distance_TarBarHeight 49 //tab高度
/************* 控制打印 *************************/
#ifdef DEBUG
#define Log(...) NSLog(__VA_ARGS__)
#else
#define Log(...)
#endif
这篇关于常用的Pch的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!