如何设置 LaunchScreen 显示的时间

Posted xiaochunzao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何设置 LaunchScreen 显示的时间相关的知识,希望对你有一定的参考价值。

1. 打开“AppDelegate.m”文件;

2. 在如下代码段

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

    // Override point for customization after application launch.
    return YES;
添加
[NSThread sleepForTimeInterval:3];
结果
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

    // Override point for customization after application launch.
    [NSThread sleepForTimeInterval:3];
    
    return YES;


以上是关于如何设置 LaunchScreen 显示的时间的主要内容,如果未能解决你的问题,请参考以下文章

iOS 启动屏幕不会停止显示 launchscreen.xib

关于LaunchScreen启动页设置图片不显示

Xcode:LaunchScreen.storyboard 未显示

iOS Xcode LaunchScreen故事板无法显示

App启动图不显示的解决办法.

UIImageView 没有出现在 LaunchScreen.xib 中