GMTools.h 383 B

12345678910111213141516171819202122
  1. //
  2. // GMTools.h
  3. // XenonSDK
  4. //
  5. // Created by fq on 2021/3/22.
  6. // Copyright © 2021 SAGESSE. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface GMTools : NSObject
  11. //获取窗口window最上层的vc
  12. + (UIViewController *)getViewControl;
  13. + (UIWindow *)getKeyWindow;
  14. //判断是否是iPhoneX 系列机型
  15. + (BOOL)isIPhoneXSeries;
  16. @end