diff --git a/ios/WalletID/AppDelegate.m b/ios/WalletID/AppDelegate.m index dd69aba4..23e728d5 100644 --- a/ios/WalletID/AppDelegate.m +++ b/ios/WalletID/AppDelegate.m @@ -31,6 +31,11 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( rootViewController.view = rootView; self.window.rootViewController = rootViewController; [self.window makeKeyAndVisible]; + + UIView* launchScreenView = [[[NSBundle mainBundle] loadNibNamed:@"LaunchScreen" owner:self options:nil] objectAtIndex:0]; + launchScreenView.frame = self.window.bounds; + rootView.loadingView = launchScreenView; + return YES; }