Making the launch image display longer xcode

后端 未结 8 2032
囚心锁ツ
囚心锁ツ 2020-12-14 10:04

I need help with launch images on iphone. In the project settings on xcode theres an option to add launch images. I added it and it displays for 2 seconds... I want it to be

8条回答
  •  眼角桃花
    2020-12-14 10:45

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    
    
      /*this will pause main thread for x interval seconds. 
      put on the top of application:didFinishLaunchingWithOptions, so it will not 
      proceed to show window until sleep interval is finished.*/
    
        [NSThread sleepForTimeInterval:2]; //add 2 seconds longer.
       //other code....
    }
    

提交回复
热议问题