-(BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {//--insert a delay of 5 seconds before the splash screen disappears--[NSThread sleepForTimeInterval:5.0];
// Override point for customization after application launch.// Add the view controller’s view to the window and display.[window addSubview:viewController.view];
[window makeKeyAndVisible];
returnYES;
}
这样splash页面就停留5秒后,消失了。