Home
last modified time | relevance | path

Searched refs:keyWindow (Results 1 – 25 of 87) sorted by relevance

1234

/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/CoreModules/
H A DABI49_0_0RCTAlertController.m26 UIWindow *keyWindow = ABI49_0_0RCTSharedApplication().keyWindow;
27 if (keyWindow) {
28 _alertWindow = [[UIWindow alloc] initWithFrame:keyWindow.bounds];
30 // keyWindow is nil, so we cannot create and initialize _alertWindow
31 NSLog(@"Unable to create alert window: keyWindow is nil");
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/CoreModules/
H A DABI48_0_0RCTAlertController.m26 UIWindow *keyWindow = ABI48_0_0RCTSharedApplication().keyWindow;
27 if (keyWindow) {
28 _alertWindow = [[UIWindow alloc] initWithFrame:keyWindow.bounds];
30 // keyWindow is nil, so we cannot create and initialize _alertWindow
31 NSLog(@"Unable to create alert window: keyWindow is nil");
/expo/packages/expo-splash-screen/ios/EXSplashScreen/
H A DEXSplashScreenService.m16 * - `keyWindow.rootViewController`: it is for expo-dev-client which replaced it in startup.
147 UIViewController *rootViewController = [[application keyWindow] rootViewController];
162 …UIViewController *rootViewController = UIApplication.sharedApplication.keyWindow.rootViewControlle…
164 [UIApplication.sharedApplication.keyWindow addObserver:self
187 …if (object == UIApplication.sharedApplication.keyWindow && [keyPath isEqualToString:kRootViewContr…
198 …if (object == UIApplication.sharedApplication.keyWindow.rootViewController && [keyPath isEqualToSt…
/expo/ios/versioned/sdk48/EXSplashScreen/EXSplashScreen/
H A DABI48_0_0EXSplashScreenService.m16 * - `keyWindow.rootViewController`: it is for expo-dev-client which replaced it in startup.
153 UIViewController *rootViewController = [[application keyWindow] rootViewController];
168 …UIViewController *rootViewController = UIApplication.sharedApplication.keyWindow.rootViewControlle…
170 [UIApplication.sharedApplication.keyWindow addObserver:self
193 …if (object == UIApplication.sharedApplication.keyWindow && [keyPath isEqualToString:kRootViewContr…
204 …if (object == UIApplication.sharedApplication.keyWindow.rootViewController && [keyPath isEqualToSt…
/expo/ios/versioned/sdk49/EXSplashScreen/EXSplashScreen/
H A DABI49_0_0EXSplashScreenService.m16 * - `keyWindow.rootViewController`: it is for expo-dev-client which replaced it in startup.
153 UIViewController *rootViewController = [[application keyWindow] rootViewController];
168 …UIViewController *rootViewController = UIApplication.sharedApplication.keyWindow.rootViewControlle…
170 [UIApplication.sharedApplication.keyWindow addObserver:self
193 …if (object == UIApplication.sharedApplication.keyWindow && [keyPath isEqualToString:kRootViewContr…
204 …if (object == UIApplication.sharedApplication.keyWindow.rootViewController && [keyPath isEqualToSt…
/expo/ios/versioned/sdk47/EXSplashScreen/EXSplashScreen/
H A DABI47_0_0EXSplashScreenService.m16 * - `keyWindow.rootViewController`: it is for expo-dev-client which replaced it in startup.
149 UIViewController *rootViewController = [[application keyWindow] rootViewController];
164 …UIViewController *rootViewController = UIApplication.sharedApplication.keyWindow.rootViewControlle…
166 [UIApplication.sharedApplication.keyWindow addObserver:self
189 …if (object == UIApplication.sharedApplication.keyWindow && [keyPath isEqualToString:kRootViewContr…
200 …if (object == UIApplication.sharedApplication.keyWindow.rootViewController && [keyPath isEqualToSt…
/expo/packages/expo-dev-menu/vendored/react-native-safe-area-context/ios/SafeAreaView/
H A DDevMenuRNCSafeAreaProviderManager.swift16 guard let window = UIApplication.shared.keyWindow else {
/expo/packages/expo-web-browser/ios/
H A DWebAuthSession.swift8 return UIApplication.shared.keyWindow ?? ASPresentationAnchor() in presentationAnchor()
H A DWebBrowserSession.swift29 var currentViewController = UIApplication.shared.keyWindow?.rootViewController in open()
/expo/ios/versioned/sdk48/ExpoWebBrowser/
H A DWebAuthSession.swift8 return UIApplication.shared.keyWindow ?? ASPresentationAnchor() in presentationAnchor()
H A DWebBrowserSession.swift30 var currentViewController = UIApplication.shared.keyWindow?.rootViewController in open()
/expo/ios/versioned/sdk49/ExpoWebBrowser/
H A DWebAuthSession.swift8 return UIApplication.shared.keyWindow ?? ASPresentationAnchor() in presentationAnchor()
H A DWebBrowserSession.swift29 var currentViewController = UIApplication.shared.keyWindow?.rootViewController in open()
/expo/ios/versioned/sdk47/ExpoWebBrowser/
H A DWebAuthSession.swift8 return UIApplication.shared.keyWindow ?? ASPresentationAnchor() in presentationAnchor()
H A DWebBrowserSession.swift30 var currentViewController = UIApplication.shared.keyWindow?.rootViewController in open()
/expo/packages/expo-screen-orientation/ios/
H A DScreenOrientationRegistry.swift24 let keyWindow = UIApplication in screenOrientationDidChange() variable
30 return keyWindow?.rootViewController in screenOrientationDidChange()
/expo/packages/expo-print/ios/
H A DExpoPrinterSelector.swift13 guard let rootController = UIApplication.shared.keyWindow?.rootViewController else { in selectPrinter()
/expo/ios/versioned/sdk49/ExpoPrint/
H A DExpoPrinterSelector.swift13 guard let rootController = UIApplication.shared.keyWindow?.rootViewController else { in selectPrinter()
/expo/ios/vendored/sdk47/react-native-reanimated/ios/LayoutReanimation/
H A DABI47_0_0REASnapshot.m14 UIView *windowView = UIApplication.sharedApplication.keyWindow;
/expo/ios/vendored/sdk48/react-native-reanimated/ios/LayoutReanimation/
H A DABI48_0_0REASnapshot.m14 UIView *windowView = UIApplication.sharedApplication.keyWindow;
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/CoreModules/
H A DABI47_0_0RCTAlertController.m23 … _alertWindow = [[UIWindow alloc] initWithFrame:ABI47_0_0RCTSharedApplication().keyWindow.bounds];
/expo/ios/vendored/unversioned/react-native-screens/ios/
H A DRNSScreenWindowTraits.mm38 … [UIApplication.sharedApplication.keyWindow.rootViewController setNeedsStatusBarAppearanceUpdate];
59 …[UIApplication.sharedApplication.keyWindow.rootViewController setNeedsUpdateOfHomeIndicatorAutoHid…
150 …orientationMask = UIApplication.sharedApplication.keyWindow.rootViewController.supportedInterfaceO…
190 … UIViewController *topController = [UIApplication sharedApplication].keyWindow.rootViewController;
/expo/ios/vendored/sdk49/react-native-screens/ios/
H A DABI49_0_0RNSScreenWindowTraits.mm38 … [UIApplication.sharedApplication.keyWindow.rootViewController setNeedsStatusBarAppearanceUpdate];
59 …[UIApplication.sharedApplication.keyWindow.rootViewController setNeedsUpdateOfHomeIndicatorAutoHid…
150 …orientationMask = UIApplication.sharedApplication.keyWindow.rootViewController.supportedInterfaceO…
190 … UIViewController *topController = [UIApplication sharedApplication].keyWindow.rootViewController;
/expo/ios/versioned/sdk48/ExpoAppleAuthentication/
H A DAppleAuthenticationRequest.swift84 guard let window = UIApplication.shared.keyWindow else { in presentationAnchor()
/expo/ios/versioned/sdk49/ExpoAppleAuthentication/
H A DAppleAuthenticationRequest.swift84 guard let window = UIApplication.shared.keyWindow else { in presentationAnchor()

1234