123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- //
- // UtilsMacro.h
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #ifndef UtilsMacro_h
- #define UtilsMacro_h
- #import "UIColor+MT.h"
- #import "AppDelegate.h"
- #import "MTDevicesTool.h"
- //------------------------------------------视图--------------------------------------------
- #define KWINDOW [UIApplication sharedApplication].keyWindow
- //// 根视图控制器
- #define ROOTVC KWINDOW.rootViewController
- // 当前导航栏控制器
- #define CURRENT_NAV \
- ({ \
- RDVTabBarController *rootVc = (RDVTabBarController *)[UIApplication sharedApplication].keyWindow.rootViewController;\
- CustomNavigationController *currentNav = (CustomNavigationController*)rootVc;\
- (currentNav);\
- })
- //
- //-------------------------------------------系统-------------------------------------------
- // APPDelegate
- #define APPDELEGATE (AppDelegate *)[UIApplication sharedApplication].delegate
- // 是否是iPhone X
- #define iphoneX [MTDevicesTool isIphoneX]
- // 是否是iPhone XS M
- #define iphoneXSM [MTDevicesTool isIphoneXSM]
- // 机型
- #define iPhone_model [MTDevicesTool iphoneModel]
- // 系统版本
- #define iPhone_verson [[UIDevice currentDevice] systemVersion]
- // 获取App名称
- #define APP_NAME [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleDisplayName"]
- //获取App编译版本号
- #define APP_BUILDVERSION [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];
- //获取App发布版本号
- #define APP APP_RELEASEVERSION [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]
- //
- //-------------------------------------------颜色-------------------------------------------
- //rab转换
- #define rgb(r,g,b,a) [UIColor colorWithRed:r/255.0 green:g/255.0 blue:b/255.0 alpha:a]
- //// rgb颜色转换(16进制->10进制)
- #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)]
- #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]
- // #000000转颜色
- #define HColor(hString) [UIColor mt_colorWithHexString:hString]
- #define MainColor HColor(@"45E6B0")
- #define MainBgColor HColor(@"FAFBFD")
- ////-------------------------------------------图片-------------------------------------------
- ////路径图片
- #define ImageFile(A) [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:A ofType:nil]]
- //获取图片
- #define ImageNamed(name) [UIImage imageNamed:name]
- //----------------------------------------frame---------------------------------------------
- #define ScreenWidth ([[UIScreen mainScreen]bounds].size.width)
- #define ScreenHeight ([[UIScreen mainScreen]bounds].size.height)
- #define ViewWidth(v) v.frame.size.width
- #define ViewHeight(v) v.frame.size.height
- #define ViewX(v) v.frame.origin.x
- #define ViewY(v) v.frame.origin.y
- #define SelfViewHeight self.view.bounds.size.height
- ////----------------------------------------适配---------------------------------------------
- #define kNumFrom375(a) (ScreenWidth/375 * a)
- #define kNumFrom667(a) (ScreenHeight/667 * a)
- // 标签栏高度 适配x 普通为:58 x:58+34
- #define tabBarHeight [MTDevicesTool tabBaritemHeight]
- // 下标高度 适配x 普通为:0 x:24
- #define toolBarHeight [MTDevicesTool toolBarHeightMethod]
- // 导航栏高度
- #define navHeight [MTDevicesTool navBarHeight]
- // 状态栏高度
- #define statusHeight [MTDevicesTool statusBarHeight]
- // 字体大小
- #define bold(S) [UIFont boldSystemFontOfSize:kNumFrom375(S)]
- #define font(S) [UIFont systemFontOfSize:kNumFrom375(S)]
- ////----------------------------------------字符串---------------------------------------------
- // 判断字段时候为空的情况
- #define IF_NULL_TO_STRING(x) ([(x) isEqual:[NSNull null]]||(x)==nil)? @"":TEXT_STRING(x)
- // 转换为字符串
- #define TEXT_STRING(x) [NSString stringWithFormat:@"%@",x]
- // 停止输入,收起键盘
- #define ResignAllResponder [[UIApplication sharedApplication].keyWindow endEditing:YES];
- ////----------------------------------------存储类--------------------------------------------
- //userdefault
- #define USERDEFAULTS [NSUserDefaults standardUserDefaults]
- //删除
- #define NSUserDefaultRemove(KEY) [[NSUserDefaults standardUserDefaults] removeObjectForKey:KEY];
- //取
- #define NSUserDefaultObjectForKey(KEY) [[NSUserDefaults standardUserDefaults]objectForKey:KEY]
- //set
- #define NSUserDefaultSetObject(VALUE,KEY) \
- [[NSUserDefaults standardUserDefaults] setObject:VALUE forKey:KEY];\
- [[NSUserDefaults standardUserDefaults] synchronize];
- //
- ////------------------------------------------其他--------------------------------------------
- //解析html语言
- #define HTMLString(HTML) \
- ({ \
- 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>"; \
- NSString *resultStr; \
- resultStr = [NSString stringWithFormat:@"<!DOCTYPE html> %@ <body> %@ </body> </html>",head,HTML]; \
- (resultStr); \
- })
- //JYRouter 获取参数
- #define ParaOfIOS_URL(URL) \
- ({ \
- NSRange range = [URL rangeOfString:@"?"];\
- NSString *propertys = [URL substringFromIndex:(int)(range.location+1)];\
- NSArray *subArray = [propertys componentsSeparatedByString:@"&"];\
- NSMutableDictionary *tempDic = [NSMutableDictionary dictionaryWithCapacity:4];\
- for (int j = 0 ; j < subArray.count; j++) { \
- NSArray *dicArray = [subArray[j] componentsSeparatedByString:@"="];\
- [tempDic setObject:dicArray[1] forKey:dicArray[0]];\
- }\
- (tempDic);\
- })
- //JYRouter 获取类名
- #define GetClassName(URL) \
- ({\
- NSRange range = [URL rangeOfString:@"?"];\
- NSString *className = [URL substringToIndex:(int)(range.location)];\
- (className);\
- })
- #endif
|