zoukankan      html  css  js  c++  java
  • ios启动动画

    1、在images.xcassets里面加入LaunchImage

    2、删掉LaunchScreen.xib

    3、在Supporting Files里的info.plist的文件下,移除Launch screen interface file base...

    在配置文件Target--->项目名称---->General----->

    4、把以上第二行改成以上名字

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

        if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {

            //此行配合plist文件中的View controller-based status bar appearance=NO一起使用,解决状态栏全黑的问题

            [application setStatusBarStyle:UIStatusBarStyleLightContent];}

        //使启动动画停顿2秒

          [NSThread sleepForTimeInterval:2.0];

        //使进入界面不为全黑,为白色

        self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

        self.window.backgroundColor = [UIColor whiteColor];

        [self.window makeKeyAndVisible];

        return YES;

    }

  • 相关阅读:
    爬虫:Scrapy15
    爬虫:Scrapy14
    爬虫:Scrapy13
    爬虫:Scrapy12
    爬虫:Scrapy11
    爬虫:Scrapy10
    爬虫:Scrapy9
    线段树基础
    [USACO08DEC]秘密消息Secret Message
    阅读理解
  • 原文地址:https://www.cnblogs.com/momosmile/p/4642735.html
Copyright © 2011-2022 走看看