我在info.plist中的应用程序中添加了启动图像。所以,我可以知道是否可以设置启动应用程序的时间为5秒。谢谢
答案 0 :(得分:3)
你绝对可以这样做,但你不应该这样做。用户将无所事事地盯着无用的闪屏。
答案 1 :(得分:0)
在你的app delegate的didFinishLaunching方法中,执行:
sleep(5);
答案 2 :(得分:0)
在您的App委托类中,使用didFinishLaunchingWithOptions
方法。
[NSThread sleepForTimeInterval:5.0];
这将使您的应用等待5秒。
答案 3 :(得分:0)
是。您可以设置启动图像的时间。下面是代码。它可能对你有帮助。
[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(onLaunchExpire) userInfo:nil repeats:NO];
使用此功能并告诉我更多详情..