iOS设置启动页停留时间

来源:互联网 发布:电脑怎么建立网络共享 编辑:程序博客网 时间:2024/05/19 04:56

在 AppDelegate.m里


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

    // Override point for customization after application launch.

    

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

    return YES;

}

0 0