iOS 开发宏

持续更新Object-C

//
//  PublicDefine.h
//  TYZF_ElderlyService
//
//  Created by ll on 2015/10/13.
//  Copyright © 2015年 ll. All rights reserved.
//  综合开发宏

#ifndef PublicDefine_h
#define PublicDefine_h
#import <UIKit/UIKit.h>
// ---------------------------------------------------------------------------------------------

/** 字符串是否为空 */
#define kStringIsEmpty(str) ([str isKindOfClass:[NSNull class]] || str == nil || [str length] < 1 ? YES : NO )

/** 数组是否为空 */
#define kArrayIsEmpty(array) (array == nil || [array isKindOfClass:[NSNull class]] || array.count == 0)

/** 字典是否为空 */
#define kDictIsEmpty(dic) (dic == nil || [dic isKindOfClass:[NSNull class]] || dic.allKeys == 0)

/** 是否是空对象 */
#define kObjectIsEmpty(_object) (_object == nil \
|| [_object isKindOfClass:[NSNull class]] \
|| ([_object respondsToSelector:@selector(length)] && [(NSData *)_object length] == 0) \
|| ([_object respondsToSelector:@selector(count)] && [(NSArray *)_object count] == 0))

/** 获取屏幕宽 */
#define kScreenWidth \
([[UIScreen mainScreen] respondsToSelector:@selector(nativeBounds)] ? [UIScreen mainScreen].nativeBounds.size.width/[UIScreen mainScreen].nativeScale : [UIScreen mainScreen].bounds.size.width)

/** 获取屏幕高 */
#define kScreenHeight \
([[UIScreen mainScreen] respondsToSelector:@selector(nativeBounds)] ? [UIScreen mainScreen].nativeBounds.size.height/[UIScreen mainScreen].nativeScale : [UIScreen mainScreen].bounds.size.height)

/** 获取屏幕尺寸 */
#define kScreenSize \
([[UIScreen mainScreen] respondsToSelector:@selector(nativeBounds)] ? CGSizeMake([UIScreen mainScreen].nativeBounds.size.width/[UIScreen mainScreen].nativeScale,[UIScreen mainScreen].nativeBounds.size.height/[UIScreen mainScreen].nativeScale) : [UIScreen mainScreen].bounds.size)

/** iPhone6 坐标适配 */
#define ScreenZoomScaleSix kScreenWidth/375.0f
#define ScreenSix(value) value *ScreenZoomScaleSix

#define ScreenZoomScaleSixHeight kScreenHeight/667.0f
#define ScreenSixHeight(value) value *ScreenZoomScaleSixHeight

/** 常用缩写 */
#define kApplication        [UIApplication sharedApplication]
#define kKeyWindow          [UIApplication sharedApplication].keyWindow
#define kAppDelegate        [UIApplication sharedApplication].delegate
#define kUserDefaults      [NSUserDefaults standardUserDefaults]
#define kNotificationCenter [NSNotificationCenter defaultCenter]

/** APP版本号 */
#define kAppVersion [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]

/** 手机序列号*/
#define kPhoneUUID [[UIDevice currentDevice] identifierForVendor]]

/** 系统版本号 */
#define kSystemVersion [[UIDevice currentDevice] systemVersion]

/** 获取当前语言 */
#define kCurrentLanguage ([[NSLocale preferredLanguages] objectAtIndex:0])

/** 判断是否为iPhone */
#define kISiPhone (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)

/** 判断是否为iPad */
#define kISiPad (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)

/** 获取沙盒Document路径 */
#define kDocumentPath [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject]

/** 获取沙盒temp路径 */
#define kTempPath NSTemporaryDirectory()

/** 获取沙盒Cache路径 */
#define kCachePath [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) firstObject]

/** 判断是真机还是模拟器 */
#if TARGET_OS_IPHONE
//真机
#endif
#if TARGET_IPHONE_SIMULATOR
//模拟器
#endif

/** 开发的时候打印,但是发布的时候不打印的NSLog */
#ifdef DEBUG
#define NSLog(...) printf("\n\n %s_%d行 \n %s \n\n",__func__,__LINE__,[[NSString stringWithFormat:__VA_ARGS__] UTF8String])
#else
#define NSLog(...)
#endif

// 颜色
#define LColor(r, g, b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1.0]
#define LColorRGBA(r, g, b, a) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:a]
#define LColorFromRGB(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]

// 随机色
#define LRandomColor LColor(arc4random_uniform(256), arc4random_uniform(256), arc4random_uniform(256))

/** 由角度转换弧度 */
#define kDegreesToRadian(x)      (M_PI * (x) / 180.0)

/** 由弧度转换角度 */
#define kRadianToDegrees(radian) (radian * 180.0) / (M_PI)

/** 获取一段时间间隔 */
#define kStartTime CFAbsoluteTime start = CFAbsoluteTimeGetCurrent();
#define kEndTime  NSLog(@"Time: %f", CFAbsoluteTimeGetCurrent() - start)

/** 是否是iPhone X*/
#define IsIphoneX ((((kScreenWidth >= 375) && (kScreenHeight >= 812)  ) || \
((kScreenWidth >= 414) && (kScreenHeight >= 896)  )) ? 1 : 0)

// iPhone X以上 状态栏,导航栏,tabbar高度
/** 判断是否为iPhone*/
#define L_iphone (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
/** 判断您是否为iPhone X 以上*/
#define L_iPhoneX kScreenWidth >=375.0f && kScreenHeight >=812.0f&& L_iphone
/*状态栏高度*/
#define kStatusBarHeight (CGFloat)(L_iPhoneX?(44.0):(20.0))
/*导航栏高度*/
#define kNavBarHeight (44)
/*状态栏和导航栏总高度*/
#define kNavBarAndStatusBarHeight (CGFloat)(L_iPhoneX?(88.0):(64.0))
/*TabBar高度*/
#define kTabBarHeight (CGFloat)(L_iPhoneX?(49.0 + 34.0):(49.0))
/*顶部安全区域远离高度*/
#define kTopBarSafeHeight (CGFloat)(L_iPhoneX?(44.0):(0))
/*底部安全区域远离高度*/
#define kBottomSafeHeight (CGFloat)(L_iPhoneX?(34.0):(0))
/*iPhoneX的状态栏高度差值*/
#define kTopBarDifHeight (CGFloat)(L_iPhoneX?(24.0):(0))
/*导航条和Tabbar总高度*/
#define kNavAndTabHeight (kNavBarAndStatusBarHeight + kTabBarHeight)

// ------------------------------------------------ 颜色 ---------------------------------------------------
/** 主体色 */
#define mainBodyColor LColorFromRGB(0xFFFFFF)  // 白色背景

/** 背景色 */
#define mainBackColor LColorFromRGB(0xE8E8E8) // 灰色背景

/** 黑色字体 */
#define textColorBlack LColorFromRGB(0x333333) // 黑色字体

/** 红色字体 */
#define textColorRed LColorFromRGB(0xE33939) // 红色字体

/** 深灰色字体 */
#define textColorDarkGrey LColorFromRGB(0x999999) // 深灰色字体

/** 分割线色字体 */
#define dividingLineColor LColorFromRGB(0xEEEEEE) // 深灰色字体

// ------------------------------------------------ 字体 ---------------------------------------------------
/** 字体宏 */
#define default_Font(font) [UIFont systemFontOfSize:ScreenSix(font)];

// ------------------------------------------------ 图片 ---------------------------------------------------
/** 提交按钮背景图 */
#define submitButtonImage @"" // 背景图

/** 控件默认背景图 */
#define controlsDefaultImage @""

// ---------------------------------------------------------------------------------------------
/** QQ____APPKey */
static NSString *const MainQQAppKey = @"";
/** QQ____APPID */
static NSString *const MainQQAppID = @"";

/** 微信____APPKey */
static NSString *const MainWXAppKey = @"";
/** 微信____APPID */
static NSString *const MainWXAppID = @"";

/** 支付宝_______APPID*/
static NSString *const MainAliAppID = @"";

// ---------------------------------------------------------------------------------------------
/** 搜索缓存名称 */
static NSString *const SearchSaveName = @"Search";

/** 全局变量类*/
#define GlobalVarSingle [GlobalVar sharedGlobalVar]
#endif /* PublicDefine_h */

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

推荐阅读更多精彩内容

  • 磨刀不误砍柴工。工欲善其事必先利其器。   首先,宏定义只是文本替换!一篇功能全面、语法清晰、准确无误的宏定义可以...
    Cary_Xu阅读 377评论 0 2
  • 都是项目中常用的,16进制色值转换,默认字体设置字号大小,判断主线程,获取当前Version,Build,沙盒路径...
    yunyang088阅读 761评论 0 4
  • 宏定义在很多方面都会使用,例如定义高度、判断iOS系统、工具类,还有诸如文件路径、服务端api接口文档。 ...
    我不相信me阅读 515评论 0 1
  • 思考:宏与常/变量的选择? * 宏:只是在预处理器里进行文本替换,没有类型,不做任何类型检查,编译器可以对相同的字...
    Sweet丶阅读 367评论 0 0
  • 每一个人都会老去,年纪越大越觉得世界的美好。人在年轻的时候不觉得,人生的时光是如此的短暂,总认为来日方长,未来是很...
    月光影城阅读 329评论 0 0