ios 设置启动图时间

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

 

 

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

// Override point for customization after application launch.

 

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

 

return YES;

}


 

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

posted @ 2015-07-07 15:33  谢小锋  阅读(564)  评论(0)    收藏  举报