码迷,mamicode.com
首页 > 移动开发 > 详细

iOS LaunchScreen启动图设置

时间:2015-11-06 11:01:59      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:


新建的iOS 项目启动画面默认为LaunchScreen.xib 

如果想实现一张图片作为启动页,如下图

技术分享

技术分享

技术分享

 

 

如果启动不行  记得clear 一下工程

 

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

即可

iOS LaunchScreen启动图设置

标签:

原文地址:http://www.cnblogs.com/shaoting/p/4941814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!