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

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

 

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

// Override point for customization after application launch.

 

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

 

return YES;

}

你可能感兴趣的:(启动页,延时启动,设置启动页停留时间)