iOS (OC/Swift)开发常用的宏定义(日记)

OC版本

//获取屏幕的宽、高
#define KScreenWidth [UIScreen mainScreen].bounds.size.width
#define KScreenHeight [UIScreen mainScreen].bounds.size.height

// __block
#define kBlcokSelf(pSelf) __block typeof(&*self) pBlcokSelf = self

//状态栏的高度
#ifdef __IPHONE_13_0 //判断是否是13以上系统
#define statusBarHeight [[UIApplication sharedApplication] windows].firstObject.windowScene.statusBarManager.statusBarFrame.size.height
#else
#define statusBarHeight [[UIApplication sharedApplication] statusBarFrame].size.height
#endif

//状态栏+导航栏高度
#define NavAndstatusBarHeight (statusBarHeight+44)
//判断是否是刘海屏
#define iPhoneX ((statusBarHeight != 20) ? YES : NO)
//底部安全距离
#define bottomLayoutIPhoneX (iPhoneX ? 34 : 0)

//判断手机屏幕尺寸
//3.5寸屏幕
#define ThreePointFiveInch ([UIScreen mainScreen].bounds.size.height == 480.0)
//4.0寸屏幕(iPhone SE)
#define FourInch ([UIScreen mainScreen].bounds.size.height == 568.0)
//4.7寸屏幕(iPhone 6/6s/7/8/SE2)
#define FourPointSevenInch ([UIScreen mainScreen].bounds.size.height == 667.0)
//5.4寸屏幕(iPhone 12 mini/13 mini)
#define FivePointFourSevenInch ([UIScreen mainScreen].bounds.size.height == 780.0)
//5.5寸屏幕(iPhone 6p/7p/8p)
#define FivePointFiveSevenInch ([UIScreen mainScreen].bounds.size.height == 736.0)
//5.8寸屏幕(iPhone x/xs/11Pro)
#define FivePointEightSevenInch ([UIScreen mainScreen].bounds.size.height == 812.0)
//6.1(iPhone xr/11/12/12 Pro/13/13 Pro/14/14Pro)
#define SixPointOneSevenInch (([UIScreen mainScreen].bounds.size.height == 896.0 && [UIScreen mainScreen].scale == 2) || [UIScreen mainScreen].bounds.size.height == 844.0 || [UIScreen mainScreen].bounds.size.height == 852.0)
//6.5寸屏幕(iPhone xsMax/11ProMax)
#define SixPointFiveSevenInch ([UIScreen mainScreen].bounds.size.height == 896.0 && [UIScreen mainScreen].scale == 3)
//6.7寸屏幕(iPhone 12 Pro Max/13 Pro Max/14Plus/14ProMax)
#define SixPointSevenSevenInch ([UIScreen mainScreen].bounds.size.height == 926.0 || [UIScreen mainScreen].bounds.size.height == 932)

//判断是否从右往左读取(RTL,阿拉伯语是RTL)这里只适配了阿拉伯语
#define isRTL [[NSLocale preferredLanguages].firstObject hasPrefix:@"ar-"]

//设置颜色
#define HexRGB(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 HexRGBAlpha(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)]

//GCD (子线程、主线程定义)
#define BACK(block) dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), block)
#define MAIN(block) dispatch_async(dispatch_get_main_queue(),block)

// 获取版本号
#define LOCAL_RELEASE_VERSION [[NSBundle mainBundle]infoDictionary][@"CFBundleShortVersionString"]

// 获取手机型号
#define Phone_Model [[UIDevice currentDevice] model]

// 系统版本号
#define System_Version [[UIDevice currentDevice] systemVersion]
//设置本地图片
#define TL_IMAGE(name) [UIImage imageNamed:name]

Swift版本

//获取屏幕高宽
let ScreenWith = UIScreen.main.bounds.size.width
let ScreenHeight = UIScreen.main.bounds.size.height

//返回状态栏高度
#if __IPHONE_13_0
let statusBarHeight = UIApplication.shared.windows.first?.windowScene?.statusBarManager?.statusBarFrame.size.height
#else
let statusBarHeight = UIApplication.shared.statusBarFrame.size.height
#endif

//返回状态栏和导航栏的高度
let NavAndstatusBarHeight = statusBarHeight + 44

//判断是否是刘海屏
let iphoneX = ((statusBarHeight != 20) ? true : false)

// 获取版本号
let LOCAL_RELEASE_VERSION = Bundle.main.infoDictionary!["CFBundleShortVersionString"] as! String

// 获取手机型号
let Phone_Model = UIDevice.current.model

// 系统版本号
let System_Version = UIDevice.current.systemVersion

//获取当前语言
let Language_first_local = NSLocale.preferredLanguages.first!


//GCD(进入异步线程)
func GCDThread (completion: (() -> Void)? = nil) {
    DispatchQueue.global(qos: .default).async {
        completion!()
    }
}
//回到主线程
func MainThread (completion: (() -> Void)? = nil) {
    DispatchQueue.main.async {
        completion!()
    }
}
//延迟执行
func AfterGCD (timeInval:CGFloat, completion: (() -> Void)? = nil) {
    DispatchQueue.main.asyncAfter(deadline: .now() + timeInval) {
        completion!()
    }
}


// MARK: - 颜色
var RGBA:(NSInteger, NSInteger, NSInteger, CGFloat) -> UIColor = { (r,g,b,a) in
    return UIColor(red: CGFloat(r)/255.0, green: CGFloat(g)/255.0, blue: CGFloat(b)/255.0, alpha: a)
}

var RGB:(NSInteger, NSInteger, NSInteger) -> UIColor = { (r,g,b) in
    return UIColor(red: CGFloat(r)/255.0, green: CGFloat(g)/255.0, blue: CGFloat(b)/255.0, alpha: 1.0)
}
//随机颜色
let RANDOM_COLOR = RGB(Int(arc4random())%255, Int(arc4random())%255, Int(arc4random())%255)

//16进制颜色转换
var HexRGB:(NSInteger) -> UIColor = { hex in
    return UIColor(red: ((CGFloat)((hex & 0xFF0000) >> 16)) / 255.0, green: ((CGFloat)((hex & 0xFF00) >> 8)) / 255.0, blue: ((CGFloat)((hex & 0xFF))) / 255.0, alpha: 1.0)
}
//16进制颜色转换(带透明度)
var HexRGBAlpha:(NSInteger, CGFloat) -> UIColor = { (hex, alpha) in
    return UIColor(red: ((CGFloat)((hex & 0xFF0000) >> 16)) / 255.0, green: ((CGFloat)((hex & 0xFF00) >> 8)) / 255.0, blue: ((CGFloat)((hex & 0xFF))) / 255.0, alpha: alpha)
}

//storyboard
var Storyboard_INSTANT_VC_WITH_ID:(String, String) -> UIViewController = { name,identifier in
    return UIStoryboard.init(name: name, bundle: nil).instantiateViewController(withIdentifier: identifier)
}

//nib
var Nib_INSTANT_WITH_NAME:(String) -> Any? = { name in
    return Bundle.main.loadNibNamed(name, owner: nil, options: nil)?.first
}


//设置本地图片
var imageName:(String) -> UIImage = { imgName in
    return UIImage(named: imgName)!
}


/// 判断设备是 iPhone
let isIPhone = UIDevice.current.userInterfaceIdiom == UIUserInterfaceIdiom.phone

/// 判断设备是 iPad
let isIPad = UIDevice.current.userInterfaceIdiom == UIUserInterfaceIdiom.pad

/// 判断是否是横屏
public func isIsLandscape() -> Bool {
    return UIDevice.current.orientation.isLandscape || UIApplication.shared.statusBarOrientation == UIInterfaceOrientation.landscapeLeft  || UIApplication.shared.statusBarOrientation == UIInterfaceOrientation.landscapeRight
}

///获取keywindow
#if __IPHONE_13_0
let KeyWindows = UIApplication.shared.windows.first
#else
let KeyWindows = UIApplication.shared.keyWindow
#endif

///获取Document路径
let DocumentPath_Local = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first! + "/"

///获取caches路径
let CachesPath_Local = NSSearchPathForDirectoriesInDomains(.cachesDirectory, .userDomainMask, true).first! + "/"

///获取caches路径
let LibraryPath_Local = NSSearchPathForDirectoriesInDomains(.libraryDirectory, .userDomainMask, true).first! + "/"

///获取temp路径
let TempPath_Local = NSTemporaryDirectory()


///打印log
func printLog(_ items: Any..., separator: String = " ", terminator: String = "\n") {
#if DEBUG
    let currentDate = Date()
    let calendar = Calendar.current
    let components = calendar.dateComponents([.nanosecond], from: currentDate)
    let nanosecond = components.nanosecond ?? 000
    // 由于 DateComponents 的 nanosecond 是以纳秒为单位,我们需要将其转换为毫秒
    let milliseconds = nanosecond/1000000
    let paddedNumber = String(format: "%03d", milliseconds)

    let dateformatter = DateFormatter()
    dateformatter.dateFormat = "YYYY-MM-dd HH:mm:ss"// 自定义时间格式
    let time = dateformatter.string(from: currentDate)

    print("\(time) \(paddedNumber):", terminator:"")
    print(items, separator: separator, terminator: terminator)
//    print("当前是Debug模式")
#else
//    print("当前不是Debug模式")
#endif
}

/// 添加通知
/// - Parameters:
///   - name: 通知名称
///   - object: 传递的参数
func NotificationCenterPost(name:String, object:Any? = nil) {
    NotificationCenter.default.post(name: NSNotification.Name(name), object: object)
}


/// 接收通知
/// - Parameters:
///   - name: 通知名称
///   - isMainThread: 是否在主线程
///   - completion: 通知执行的方法
func NotificationCenterAdd(name:String, isMainThread:Bool = true, completion:@escaping (Notification) -> Void) {
    NotificationCenter.default.addObserver(forName: NSNotification.Name(name), object: nil, queue: (isMainThread ? .main : .current)) { not in
        completion(not)
    }
}


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

推荐阅读更多精彩内容