1 Star 0 Fork 0

流绪微梦/FDSMeshLibDemo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
PrefixHeader.pch 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
流绪微梦 提交于 2022-06-13 16:42 . 完善SDK接口调用
//
// PrefixHeader.pch
// FDSMeshLibDemo
//
// Created by LEIPENG on 2022/6/9.
//
#ifndef PrefixHeader_pch
#define PrefixHeader_pch
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import "JMDropMenu.h"
#import "SVProgressHUD.h"
#import "MeshTool.h"
#endif
/*********************************************************/
//判断是否是刘海屏
#define IPHONE_X \
({BOOL isPhoneX = NO;\
if (@available(iOS 11.0, *)) {\
isPhoneX = [[UIApplication sharedApplication] delegate].window.safeAreaInsets.bottom > 0.0;\
}\
(isPhoneX);})
#define NavigationBarHeight 44.f
#define TabbarSafeBottomMargin (IPHONE_X ? 34.f : 0.f)
#define MoreStatusBarHeight (IPHONE_X ? 24.f : 0.f)
#define StatusBarAndNavigationBarHeight (IPHONE_X ? 88.f : 64.f)
#define StatusBarHeight (IPHONE_X ? 44.f : 24.f)
/*********************************************************/
#define WeakSelf __weak typeof(self) weakSelf = self;
#define SCREEN_WIDTH [UIScreen mainScreen].bounds.size.width
#define SCREEN_HEIGHT [UIScreen mainScreen].bounds.size.height
#define DEVICE_ISIPAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
//获取系统版本
#define IOS_SYS_VERSION [[[UIDevice currentDevice] systemVersion] floatValue]
//获取当前语言
#define CurrentLanguage ([[NSLocale preferredLanguages] objectAtIndex:0])
//颜色配置
#define ColorRGB(r, g, b, a) [UIColor colorWithRed:((r) / 255.0) green:((g) / 255.0) blue:((b) / 255.0) alpha:a]
#define ColorRGBHex(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]
#endif /* PrefixHeader_pch */
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Objective-C
1
https://gitee.com/liuxuweimeng/fdsmesh-lib-demo.git
git@gitee.com:liuxuweimeng/fdsmesh-lib-demo.git
liuxuweimeng
fdsmesh-lib-demo
FDSMeshLibDemo
master

搜索帮助