1

I have a launch screen in my ios app and I'm trying to set the duration time for it, so it will show up on the screen for longer. How do I do this?

1 Answers1

1

Add this into appdelegate.m inside didFinishLaunchingWithOptions function

[RNSplashScreen show];

[NSThread sleepForTimeInterval:3.000];//time delay

return YES;

mithunSalinda
  • 300
  • 3
  • 7