是启动页停留一段时间 只需要在 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];//设置启动页面时间
时间: 2024-11-03 08:18:12