• iOS程序启动画面的制作


    iPhone开发实现splash画面非常简单,做一张名为Default.png的欢迎界面图片放在Supporting Files文件夹下替换掉默认的Default.png(为了适配,需要做Default.png、Default@2x.png、Default-568h@2x.png三种尺寸各一张)。 在XXXAppDelegate.m的- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions方法中插入以下一行代码:

      // Insert delay of 5 seconds befor the splash screen disappers.

      [NSThread sleepForTimeInterval:5.0];  // 其实这一行代码也可以不加,因为默认情况下欢迎界面的时间只有一秒,加这一句是为了延长

     欢迎界面的展示时间到5秒,时间大家可以自己定义。

    例如:

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

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

      // Override point for customization after application launch.

      self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil]autorelease];

      // Insert delay of 5 seconds befor the splash screen disappers.

      [NSThread sleepForTimeInterval:5.0];

      // Override point for customization after applicationlaunch.

      // Add the view controller’s view to the window anddisplay.

      self.window.rootViewController = self.viewController;

      [self.window makeKeyAndVisible];

      return YES;

    }

    这样splash页面就停留5秒后,消失了。

     

     

     

  • 相关阅读:
    poj1363Rails(栈模拟)
    centos6.5设备mysql5.6
    SGU326Perspective(网络流量的最大流量)(经典赛车模型)
    扩大或缩小undo表空间
    Boost源代码学习---shared_ptr.hpp
    leetcode
    为客户打造RAC-DG一些遇到的问题汇总
    十归并排序有用的算法和二进制搜索的基础
    Delphi TNativeXML Node节点乱码的一种解决方法
    Delphi TcxTreeList 读取 TcxImageComboBoxItem类型的值
  • 原文地址:https://www.cnblogs.com/weilaikeji/p/2889877.html
Copyright © 2020-2023  润新知