您好,歡迎來電子發(fā)燒友網(wǎng)! ,新用戶?[免費注冊]

您的位置:電子發(fā)燒友網(wǎng)>源碼下載>通訊/手機編程>

一些常用的iOS宏定義送給大家

大?。?/span>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

  項目開發(fā)中,我們會在許多地方加上Log,但是發(fā)布的時候又不想用這些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)];\

 ?。踁iew.layer setMasksToBounds:YES];\

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

 ?。踁iew.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%

      發(fā)表評論

      用戶評論
      評價:好評中評差評

      發(fā)表評論,獲取積分! 請遵守相關規(guī)定!

      ?