From 6552669fac8f3334b47c9cc55ba7b6945502f8b9 Mon Sep 17 00:00:00 2001 From: Andrey Shovkoplyas Date: Sat, 2 May 2020 11:24:21 +0200 Subject: [PATCH] fix crash on ios Signed-off-by: Andrey Shovkoplyas --- ios/StatusIm/AppDelegate.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/StatusIm/AppDelegate.m b/ios/StatusIm/AppDelegate.m index cdcf96f6a8..8d9efa6994 100644 --- a/ios/StatusIm/AppDelegate.m +++ b/ios/StatusIm/AppDelegate.m @@ -54,7 +54,7 @@ self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; _blankView = [[UIView alloc]initWithFrame:self.window.frame]; - _blankView.backgroundColor = [UIColor systemBackgroundColor]; + _blankView.backgroundColor = [UIColor whiteColor]; _blankView.alpha = 0; UIViewController *rootViewController = [UIViewController new];