GMTools.h 354 B

1234567891011121314151617181920
  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. //判断是否是iPhoneX 系列机型
  14. + (BOOL)isIPhoneXSeries;
  15. @end