xxxxxxxxxx
# react native
# appDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
# ...other code
# Instead of this
[RNSplashScreen show];
return [super application:application didFinishLaunchingWithOptions:launchOptions];
# Use this.
[super application:application didFinishLaunchingWithOptions:launchOptions];
[RNSplashScreen show];
return YES;
}