| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /*
- * Copyright 2018 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #import "FIRIAMRenderingWindowHelper.h"
- #import "FIRIAMBannerViewUIWindow.h"
- @implementation FIRIAMRenderingWindowHelper
- + (UIWindow *)UIWindowForModalView {
- static UIWindow *UIWindowForModal;
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- #if defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
- if (@available(iOS 13.0, *)) {
- UIWindowScene *foregroundedScene = [[self class] foregroundedScene];
- UIWindowForModal = [[UIWindow alloc] initWithWindowScene:foregroundedScene];
- } else {
- #endif // defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
- UIWindowForModal = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
- #if defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
- }
- #endif // defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
- UIWindowForModal.windowLevel = UIWindowLevelNormal;
- });
- return UIWindowForModal;
- }
- + (UIWindow *)UIWindowForBannerView {
- static UIWindow *UIWindowForBanner;
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- #if defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
- if (@available(iOS 13.0, *)) {
- UIWindowScene *foregroundedScene = [[self class] foregroundedScene];
- UIWindowForBanner = [[FIRIAMBannerViewUIWindow alloc] initWithWindowScene:foregroundedScene];
- } else {
- #endif // defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
- UIWindowForBanner =
- [[FIRIAMBannerViewUIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
- #if defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
- }
- #endif
- UIWindowForBanner.windowLevel = UIWindowLevelNormal;
- });
- return UIWindowForBanner;
- }
- + (UIWindow *)UIWindowForImageOnlyView {
- static UIWindow *UIWindowForImageOnly;
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- #if defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
- if (@available(iOS 13.0, *)) {
- UIWindowScene *foregroundedScene = [[self class] foregroundedScene];
- UIWindowForImageOnly = [[UIWindow alloc] initWithWindowScene:foregroundedScene];
- } else {
- #endif // defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
- UIWindowForImageOnly = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
- #if defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
- }
- #endif // defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
- UIWindowForImageOnly.windowLevel = UIWindowLevelNormal;
- });
- return UIWindowForImageOnly;
- }
- #if defined(__IPHONE_13_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
- + (UIWindowScene *)foregroundedScene API_AVAILABLE(ios(13.0)) {
- for (UIWindowScene *connectedScene in [UIApplication sharedApplication].connectedScenes) {
- if (connectedScene.activationState == UISceneActivationStateForegroundActive) {
- return connectedScene;
- }
- }
- return nil;
- }
- #endif
- @end
|