UtilsMacro.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. //
  2. // UtilsMacro.h
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #ifndef UtilsMacro_h
  8. #define UtilsMacro_h
  9. #import "UIColor+MT.h"
  10. #import "AppDelegate.h"
  11. #import "MTDevicesTool.h"
  12. //------------------------------------------视图--------------------------------------------
  13. #define KWINDOW [UIApplication sharedApplication].keyWindow
  14. //// 根视图控制器
  15. #define ROOTVC KWINDOW.rootViewController
  16. // 当前导航栏控制器
  17. #define CURRENT_NAV \
  18. ({ \
  19. RDVTabBarController *rootVc = (RDVTabBarController *)[UIApplication sharedApplication].keyWindow.rootViewController;\
  20. CustomNavigationController *currentNav = (CustomNavigationController*)rootVc;\
  21. (currentNav);\
  22. })
  23. //
  24. //-------------------------------------------系统-------------------------------------------
  25. // APPDelegate
  26. #define APPDELEGATE (AppDelegate *)[UIApplication sharedApplication].delegate
  27. // 是否是iPhone X
  28. #define iphoneX [MTDevicesTool isIphoneX]
  29. // 是否是iPhone XS M
  30. #define iphoneXSM [MTDevicesTool isIphoneXSM]
  31. // 机型
  32. #define iPhone_model [MTDevicesTool iphoneModel]
  33. // 系统版本
  34. #define iPhone_verson [[UIDevice currentDevice] systemVersion]
  35. // 获取App名称
  36. #define APP_NAME [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleDisplayName"]
  37. //获取App编译版本号
  38. #define APP_BUILDVERSION [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];
  39. //获取App发布版本号
  40. #define APP APP_RELEASEVERSION [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]
  41. //
  42. //-------------------------------------------颜色-------------------------------------------
  43. //rab转换
  44. #define rgb(r,g,b,a) [UIColor colorWithRed:r/255.0 green:g/255.0 blue:b/255.0 alpha:a]
  45. //// rgb颜色转换(16进制->10进制)
  46. #define UIColorFromRGBString(rgbValue,a) [UIColor colorWithRed:((float)(((rgbValue) & 0xFF0000) >> 16))/255.0 green:((float)(((rgbValue) & 0xFF00)>>8))/255.0 blue: ((float)((rgbValue) & 0xFF))/255.0 alpha:(a)]
  47. #define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
  48. // #000000转颜色
  49. #define HColor(hString) [UIColor mt_colorWithHexString:hString]
  50. #define MainColor HColor(@"45E6B0")
  51. #define MainBgColor HColor(@"FAFBFD")
  52. ////-------------------------------------------图片-------------------------------------------
  53. ////路径图片
  54. #define ImageFile(A) [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:A ofType:nil]]
  55. //获取图片
  56. #define ImageNamed(name) [UIImage imageNamed:name]
  57. //----------------------------------------frame---------------------------------------------
  58. #define ScreenWidth ([[UIScreen mainScreen]bounds].size.width)
  59. #define ScreenHeight ([[UIScreen mainScreen]bounds].size.height)
  60. #define ViewWidth(v) v.frame.size.width
  61. #define ViewHeight(v) v.frame.size.height
  62. #define ViewX(v) v.frame.origin.x
  63. #define ViewY(v) v.frame.origin.y
  64. #define SelfViewHeight self.view.bounds.size.height
  65. ////----------------------------------------适配---------------------------------------------
  66. #define kNumFrom375(a) (ScreenWidth/375 * a)
  67. #define kNumFrom667(a) (ScreenHeight/667 * a)
  68. // 标签栏高度 适配x 普通为:58 x:58+34
  69. #define tabBarHeight [MTDevicesTool tabBaritemHeight]
  70. // 下标高度 适配x 普通为:0 x:24
  71. #define toolBarHeight [MTDevicesTool toolBarHeightMethod]
  72. // 导航栏高度
  73. #define navHeight [MTDevicesTool navBarHeight]
  74. // 状态栏高度
  75. #define statusHeight [MTDevicesTool statusBarHeight]
  76. // 字体大小
  77. #define bold(S) [UIFont boldSystemFontOfSize:kNumFrom375(S)]
  78. #define font(S) [UIFont systemFontOfSize:kNumFrom375(S)]
  79. ////----------------------------------------字符串---------------------------------------------
  80. // 判断字段时候为空的情况
  81. #define IF_NULL_TO_STRING(x) ([(x) isEqual:[NSNull null]]||(x)==nil)? @"":TEXT_STRING(x)
  82. // 转换为字符串
  83. #define TEXT_STRING(x) [NSString stringWithFormat:@"%@",x]
  84. // 停止输入,收起键盘
  85. #define ResignAllResponder [[UIApplication sharedApplication].keyWindow endEditing:YES];
  86. ////----------------------------------------存储类--------------------------------------------
  87. //userdefault
  88. #define USERDEFAULTS [NSUserDefaults standardUserDefaults]
  89. //删除
  90. #define NSUserDefaultRemove(KEY) [[NSUserDefaults standardUserDefaults] removeObjectForKey:KEY];
  91. //取
  92. #define NSUserDefaultObjectForKey(KEY) [[NSUserDefaults standardUserDefaults]objectForKey:KEY]
  93. //set
  94. #define NSUserDefaultSetObject(VALUE,KEY) \
  95. [[NSUserDefaults standardUserDefaults] setObject:VALUE forKey:KEY];\
  96. [[NSUserDefaults standardUserDefaults] synchronize];
  97. //
  98. ////------------------------------------------其他--------------------------------------------
  99. //解析html语言
  100. #define HTMLString(HTML) \
  101. ({ \
  102. NSString *head=@"<head> <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, user-scalable=no\"><style> img{max-width: 100%; height:auto !important;} body{ background-color: #ffffff;font-size:large;padding: 0 10px;}</style></head>"; \
  103. NSString *resultStr; \
  104. resultStr = [NSString stringWithFormat:@"<!DOCTYPE html> %@ <body> %@ </body> </html>",head,HTML]; \
  105. (resultStr); \
  106. })
  107. //JYRouter 获取参数
  108. #define ParaOfIOS_URL(URL) \
  109. ({ \
  110. NSRange range = [URL rangeOfString:@"?"];\
  111. NSString *propertys = [URL substringFromIndex:(int)(range.location+1)];\
  112. NSArray *subArray = [propertys componentsSeparatedByString:@"&"];\
  113. NSMutableDictionary *tempDic = [NSMutableDictionary dictionaryWithCapacity:4];\
  114. for (int j = 0 ; j < subArray.count; j++) { \
  115. NSArray *dicArray = [subArray[j] componentsSeparatedByString:@"="];\
  116. [tempDic setObject:dicArray[1] forKey:dicArray[0]];\
  117. }\
  118. (tempDic);\
  119. })
  120. //JYRouter 获取类名
  121. #define GetClassName(URL) \
  122. ({\
  123. NSRange range = [URL rangeOfString:@"?"];\
  124. NSString *className = [URL substringToIndex:(int)(range.location)];\
  125. (className);\
  126. })
  127. #endif