Search code examples
iosobjective-claunch-screen

Setting time for the launchscreen.xib objective c iOS


I am trying to set time for the launchscreen.xib to make it last longer, for example 5 sec,since by default it disappears too quick i searched the web but found nothing useful, can it be done ? Thanks


Solution

  • You can add this in your app delegate:

    float delay =5.0;
    
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    
        [NSThread sleepForTimeInterval:delay];
    
    }