123456789101112131415161718192021 |
- //
- // YMWindowUtils.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/4.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YMWindowUtils : NSObject
- + (nullable UIWindowScene*)activeScene NS_AVAILABLE_IOS(13.0);
- + (nullable UIWindowScene*)activeWindowScene NS_AVAILABLE_IOS(13.0);
- + (nullable UIWindow*)keyWindow;
- @end
- NS_ASSUME_NONNULL_END
|