天天看点

iOS开发---设置启动页停留时间

让启动页停留一段时间 只需要在 AppDelegate

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

// Override point for customization after application launch.

 

[NSThread sleepForTimeInterval:3.0];//设置启动页面时间

 

return YES;

}