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?
Asked
Active
Viewed 1,877 times
1
-
1I think this has already been answered here https://stackoverflow.com/a/52111611/2894790 – Christos Koninis Nov 27 '21 at 15:47
-
Does this answer your question? [iOS: how to delay the launch screen?](https://stackoverflow.com/questions/35028449/ios-how-to-delay-the-launch-screen) – Robin Daugherty Nov 27 '21 at 19:16
1 Answers
1
Add this into appdelegate.m inside didFinishLaunchingWithOptions function
[RNSplashScreen show];
[NSThread sleepForTimeInterval:3.000];//time delay
return YES;

mithunSalinda
- 300
- 3
- 7