iOS常用的宏定义 pch文件

如果有帮助到你就给个赞吧 谢谢咯...

  1. pch 文件路径 build settings 搜索Prifixheader
    $(SRCROOT)/黄色的文件夹名/黄色文件夹名/一层一层直到PCH文件名.pch
    !!! 文件层要统一 工程里的文件夹包含关系要和Finder 里的一致

  2. 常用宏定义
    颜色

#define kRGBColor(r, g, b, a) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:a]

设施控件圆角

#define kViewRadius(View, Radius)\
\
[View.layer setCornerRadius:(Radius)];\
[View.layer setMasksToBounds:YES]

设施圆角 边框线宽度 颜色

#define kViewBorderRadius(View, Radius, Width, Color)\
\
[View.layer setCornerRadius:(Radius)];\
[View.layer setMasksToBounds:YES];\
[View.layer setBorderWidth:(Width)];\
[View.layer setBorderColor:[Color CGColor]]

归档

#define kUserDefaults [NSUserDefaults standardUserDefaults]

屏幕长宽

#define kScreenWidth [UIScreen mainScreen].bounds.size.width
#define kScreenHeight [UIScreen mainScreen].bounds.size.height

通知

#define kNoteCenter [NSNotificationCenter defaultCenter]

// 弱引用

#define kWeakSelf __weak typeof(self) weakSelf = self

/*Dubug相关/


#ifdef DEBUG
#define NSLog(...) NSLog(__VA_ARGS__)
#define debugMethod() NSLog(@"%s", __func__)
#else
#define NSLog(...)
#define debugMethod()
#endif
#ifdef DEBUG
#define WSLog( s, ... ) NSLog( @"<%p %@:(%d)> %@", self, [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __LINE__, [NSString stringWithFormat:(s), ##__VA_ARGS__] )
//分别是方法地址,文件名,在文件的第几行,自定义输出内容
#else
#define **Log( s, ... )
#endif
//不同屏幕尺寸字体适配
#define kScreenWidthRatio  (UIScreen.mainScreen.bounds.size.width / 375.0)
#define kScreenHeightRatio (UIScreen.mainScreen.bounds.size.height / 667.0)
#define AdaptedWidth(x)  ceilf((x) * kScreenWidthRatio)
#define AdaptedHeight(x) ceilf((x) * kScreenHeightRatio)
#define AdaptedFontSize(R)     [UIFont systemFontOfSize:AdaptedWidth(R)]

干货代码 我的一个纯代码的基础框架有各种常用的分类封装入手即用

你可能感兴趣的:(iOS常用的宏定义 pch文件)