Skip to content

Commit 99ddcd8

Browse files
committed
Fix build on xcode 10.x
1 parent a053141 commit 99ddcd8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/ios/ReactNativeNavigation.m

+2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ -(void)bootstrap:(NSURL *)jsCodeLocation launchOptions:(NSDictionary *)launchOpt
6868
- (UIWindow *)initializeKeyWindow {
6969
UIWindow* keyWindow = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
7070
if (@available(iOS 13.0, *)) {
71+
#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000
7172
keyWindow.backgroundColor = [UIColor systemBackgroundColor];
73+
#endif
7274
} else {
7375
keyWindow.backgroundColor = [UIColor whiteColor];
7476
}

0 commit comments

Comments
 (0)