Xcode6.2设置启动页LaunchImage

相关设置如图所示,图一——>图二——>图三

图一

Xcode6.2设置启动页LaunchImage_第1张图片


图二


图三

Xcode6.2设置启动页LaunchImage_第2张图片


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

    // Override point for customization after application launch.

    

    // 延迟进入应用,避免应用启动过快,导致启动图片一闪而过

    [NSThread sleepForTimeInterval:3.0];

    

    return YES;

}


你可能感兴趣的:(Xcode6.2设置启动页LaunchImage)