1234567891011121314151617181920 |
- //
- // GMTools.h
- // XenonSDK
- //
- // Created by fq on 2021/3/22.
- // Copyright © 2021 SAGESSE. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @interface GMTools : NSObject
- //获取窗口window最上层的vc
- + (UIViewController *)getViewControl;
- //判断是否是iPhoneX 系列机型
- + (BOOL)isIPhoneXSeries;
- @end
|