iOS 常用宏定义

#ifdef DEBUG
#define DLog(format, ...) printf("class: <%p %s:(%d) > method: %s \n%s\n", self, [[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, __PRETTY_FUNCTION__, [[NSString stringWithFormat:(format), ##__VA_ARGS__] UTF8String] )
//#   define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#else
#   define DLog(...)
#endif

#define _weakself              __weak typeof(self)      weakself = self
#define WEAK_SELF              __weak typeof(self)      weakSelf = self;

// 颜色
#define UIColorFromHEXA(hex,a)      [UIColor colorWithRed:((hex & 0xFF0000) >> 16) / 255.0f green:((hex & 0xFF00) >> 8) / 255.0f blue:(hex & 0xFF) / 255.0f alpha:a]
#define UIColorFromRGBA(r, g, b, a) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:a]

// 设置RGB颜色
#define RGB(r,g,b)          [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:1]
#define RGBS(r,g,b,s)       [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:s]
#define  RandomColor(a)     [UIColor colorWithRed:arc4random()%256/255.0 green:arc4random()%256/255.0 blue:arc4random()%256/255.0 alpha:(a)]


#define rgba(r,g,b,s)       [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:s]
#define hexa(hex,a)         [UIColor colorWithRed:((hex & 0xFF0000) >> 16) / 255.0f green:((hex & 0xFF00) >> 8) / 255.0f blue:(hex & 0xFF) / 255.0f alpha:a]

// 系统默认字体设置和自选字体设置
#define SystemFontSize(fontsize)            [UIFont systemFontOfSize:(fontsize)]
#define SystemBoldFontSize(fontsize)        [UIFont boldSystemFontOfSize:(fontsize)]
#define CustomFontSize(fontname,fontsize)   [UIFont fontWithName:fontname size:fontsize]

//获取图片资源
#define GetImage(imageName)    [UIImage imageNamed:[NSString stringWithFormat:@"%@",imageName]]
#define imageDomain(imageName) [NSString stringWithFormat:@"%@/upload/%@", REQUEST,imageName]


// 等比例缩放系数
#define KEY_WINDOW    ([UIApplication sharedApplication].keyWindow)
#define SCREEN_WIDTH  ([[UIScreen mainScreen] bounds].size.width)
#define SCREEN_HEIGHT ([[UIScreen mainScreen] bounds].size.height)

#define SCREEN_SCALE     ((SCREEN_WIDTH > 414) ? (SCREEN_HEIGHT/375.0) : (SCREEN_WIDTH/375.0))
#define Handle(x)        ((x)*SCREEN_SCALE)
#define Handle_width(w)  ((w)*SCREEN_SCALE)
#define Handle_height(h) ((h)*SCREEN_SCALE)

/*===================================
 屏幕宽高
 ===================================*/
#define AppWidth       [UIScreen mainScreen].bounds.size.width
#define AppHeight      [UIScreen mainScreen].bounds.size.height
#define AppBounds      [UIScreen mainScreen].bounds
#define WidthRatio     (AppWidth/375.0f)
#define HeightRatio    (AppHeight/667.0f)

// 字体
#define Font(s)        [UIFont systemFontOfSize:(s)*WidthRatio]

/*===================================
 状态,导航,TabBar
 ===================================*/
#define StatusH        [[UIApplication sharedApplication] statusBarFrame].size.height //状态高度
#define NavigaBarH     self.navigationController.navigationBar.frame.size.height
#define NavigaH        (StatusH + NavigaBarH) //整个导航栏高度
#define TabbarH        AppHeight > 811.0 ? 83.0 : 49.0 //TabBar高度
#define App(s,g)       (s)-(g)

// 网络状态
#define NetWork_MobileNet           @"MobileNet" //3G|4G
#define NetWork_WIFI                @"WIFI" //WIFI
#define NetWork_NONET               @"NONET" //NONET
#define NetworkChangeNotification   @"NetworkChangeNotification"

#pragma mark --------------------------protocal----------------------------
/**
 iPhoneX适配
 */
#define iPhone__X                   ([UIScreen instanceMethodForSelector:@selector(currentMode)]?CGSizeEqualToSize(CGSizeMake(1125,2436),[[UIScreen mainScreen] currentMode].size):NO)

#define kTABBAR_HEIGHT              (iPhoneX?(49.f+34.f):49.f)

/**
 Return the statusBar height.
 */
#define kSTATUSBAR_HEIGHT (iPhoneX?44.0f:20.f)

#define LiveRemandViewY   (iPhoneX?44.0f:0.f)

/**
 Return the navigationBar height.
 */
#define kNAVIGATION_HEIGHT (44.f)

/**
 Return the (navigationBar + statusBar) height.
 */
#define kSTATUSBAR_NAVIGATION_HEIGHT (iPhoneX?88.0f:64.f)

/**
 Return 没有tabar 距 底边高度
 */
#define BOTTOM_SPACE_HEIGHT (iPhoneX?34.0f:0.0f)
/**
 Return FLYVIEW 高度
 */
#define FLYVIEW_SPACE_HEIGHT (KIPHONEXPLUST?300.0f:260.0f)

// 通用控件左右间隔
#define kSpaceToLeftOrRight Handle(10)

// 底部条高度
#define kBottomViewHeight 48

// 导航条高度
#define  kNavigationHeight 64

#define ChatToolsHeight         50          // 聊天工具框高度
#define EmojiKeyboard_Height    200         // 表情键盘的高度
#define LiveChatToolsHeight     49          // 直播间聊天工具栏高度
#define Live_EmojiKeyboard_Height  200      // 直播间表情键盘高度


////////////////////////////////////////

#define APPLICATION         [UIApplication sharedApplication]
#define APPDLE              (AppDelegate*)[APPLICATION delegate]
// 将NSUserDefaults的实例化定义成宏
#define UserDedaults        [NSUserDefaults standardUserDefaults]
// 将NSUserDefaults同步数据
#define UserDedaultsSyn     [[NSUserDefaults standardUserDefaults] synchronize]
// 将NSNotificationCenter的实例化定义成宏
#define NotificationCenter  [NSNotificationCenter  defaultCenter]

// 屏幕宽度
//#define SCREEN_WIDTH        ([UIScreen mainScreen].bounds.size.width)
// 屏幕高度
//#define SCREEN_HEIGHT       ([UIScreen mainScreen].bounds.size.height)

// 主窗口
#define KEYWINDOW           [UIApplication sharedApplication].keyWindow
// 主视图窗口
#define selfview            self.view


// app版本号
#define DEVICE_APP_VERSION      (NSString *)[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"]
// app Build版本号
#define DEVICE_APP_BUILD        (NSString *)[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]
// 系统版本号(string)
#define DEVICE_OS_VERSION       [[UIDevice currentDevice] systemVersion]
// 系统版本号(float)
#define DEVICE_OS_VERSION_VALUE [DEVICE_OS_VERSION floatValue]
// 字体设置
#define XFont(font)             [UIFont systemFontOfSize:(font)]
//#define XXFont(font)        [UIFont fontWithName:@ "Arial-BoldMT"  size:(font)]
//粗号字体
#define XXFont(font)            [UIFont fontWithName:@ "PingFang SC"  size:(font)]


#define IOS8    [[[UIDevice currentDevice]systemVersion] floatValue] >= 8.0
#define IOS7    [[[UIDevice currentDevice]systemVersion] floatValue] == 7.0
#define IOS9    [[[UIDevice currentDevice]systemVersion] floatValue] >= 9.0
#define IOS10   [[[UIDevice currentDevice]systemVersion] floatValue] >= 10.0
#define IOS10_3 [[[UIDevice currentDevice]systemVersion] floatValue] >= 10.3
#define IOS11   [[[UIDevice currentDevice]systemVersion] floatValue] >= 11.0
#define IOS12   [[[UIDevice currentDevice]systemVersion] floatValue] >= 12.0

#define iPhoneX ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone && MAX([UIScreen mainScreen].bounds.size.height,[UIScreen mainScreen].bounds.size.width) == 812)

#define iPhoneXS ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone && MAX([UIScreen mainScreen].bounds.size.height,[UIScreen mainScreen].bounds.size.width) == 812)

#define iPhoneXR ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone && MAX([UIScreen mainScreen].bounds.size.height,[UIScreen mainScreen].bounds.size.width) == 896)

#define iPhoneXMAX ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone && MAX([UIScreen mainScreen].bounds.size.height,[UIScreen mainScreen].bounds.size.width) == 896)

#define iPhone6 ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone && MAX([UIScreen mainScreen].bounds.size.height,[UIScreen mainScreen].bounds.size.width) == 667)

#define iPhone6Plus ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone && MAX([UIScreen mainScreen].bounds.size.height,[UIScreen mainScreen].bounds.size.width) == 736)

#define iPhone5sORiPhone5 ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone && MAX([UIScreen mainScreen].bounds.size.height,[UIScreen mainScreen].bounds.size.height) == 568)

#define iPhone4 ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone && MAX([UIScreen mainScreen].bounds.size.height,[UIScreen mainScreen].bounds.size.width) == 480)

//((kScreenHeight == 812.0 || kScreenHeight == 896.0) ? 88 : 64) //X h=812,XR & XR max h=896


#define STATUS_HEIGHT    [[UIApplication sharedApplication] statusBarFrame].size.height//状态栏高度
#define kStatusBarHegiht ((iPhoneX||iPhoneXR||iPhoneXS||iPhoneXMAX)?44.0f:20.0f)// 顶部安全距离
#define kNavHegiht       ((iPhoneX||iPhoneXR||iPhoneXS||iPhoneXMAX)?88.0f:64.0f)// 导航栏高度
#define kTabbarHeight    ((iPhoneX||iPhoneXR||iPhoneXS||iPhoneXMAX)?83.0f:49.0f)// Tabbar高度
#define KIPHONEXPLUST    SCREEN_HEIGHT >= 812//有刘海屏的iphone手机
#define kSafeHeight      ((KIPHONEXPLUST)?34:0)// 底部安全距离

#define kHeaderViewHeight                  44.0f
#define kTableViewCellHeightSmall          44.0f
#define kTableViewCellHeightMiddle         60.0f

//判断是否模拟器 1 真 0 否
#if TARGET_IPHONE_SIMULATOR
#define SIMULATOR    1
#else
#define SIMULATOR    0
#endif



©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,718评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,683评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,207评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,755评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,862评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,050评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,136评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,882评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,330评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,651评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,789评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,477评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,135评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,864评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,099评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,598评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,697评论 2 351

推荐阅读更多精彩内容