?
1、将你需要的欢迎界面的图片,存成Default.png
2、在XXXAppDelegate.m程序中,插入以下代码:
?
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [NSThread sleepForTimeInterval:5.0]; self.window.rootViewController = self.viewController; [self.window makeKeyAndVisible]; return YES;}
?
这样欢迎页面就停留5秒后消失了。