您好,欢迎来电子发烧友网! ,新用户?[免费注册]

您的位置:电子发烧友网>源码下载>通讯/手机编程>

一些常用的iOS宏定义送给大家

大小:0.3 MB 人气: 2017-09-26 需要积分:1

  1.获取屏幕宽度与高度

  #define SCREEN_WIDTH [UIScreen mainScreen].bounds.size.width

  #define SCREENH_HEIGHT [UIScreen mainScreen].bounds.size.height

  2.获取通知中心

  #define LRNotificationCenter [NSNotificationCenter defaultCenter]

  3.设置随机颜色

  #define LRRandomColor [UIColor colorWithRed:arc4random_uniform(256)/255.0 green:arc4random_uniform(256)/255.0 blue:arc4random_uniform(256)/255.0 alpha:1.0]

  4.设置RGB颜色/设置RGBA颜色

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

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

  // clear背景颜色

  #define LRClearColor [UIColor clearColor]

  5.自定义高效率的 NSLog

  项目开发中,我们会在许多地方加上Log,但是发布的时候又不想用这些Log,我们也不可能一个一个的删除,所以自定义Log是必然的!

  #ifdef DEBUG

  #define LRLog(。。.) NSLog(@“%s 第%d行 \n %@\n\n”,__func__,__LINE__,[NSString stringWithFormat:__VA_ARGS__])

  #else

  #define LRLog(。。.)

  #endif

  6.弱引用/强引用

  #define LRWeakSelf(type) __weak typeof(type) weak##type = type;

  #define LRStrongSelf(type) __strong typeof(type) type = weak##type;

  一些常用的iOS宏定义送给大家

  

  7.设置 view 圆角和边框

  #define LRViewBorderRadius(View, Radius, Width, Color)\

  \

  [View.layer setCornerRadius:(Radius)];\

  [View.layer setMasksToBounds:YES];\

  [View.layer setBorderWidth:(Width)];\

  [View.layer setBorderColor:[Color CGColor]]

  8.由角度转换弧度 由弧度转换角度

  #define LRDegreesToRadian(x) (M_PI * (x) / 180.0)

  #define LRRadianToDegrees(radian) (radian*180.0)/(M_PI)

非常好我支持^.^

(0) 0%

不好我反对

(0) 0%

      发表评论

      用户评论
      评价:好评中评差评

      发表评论,获取积分! 请遵守相关规定!