码迷,mamicode.com
首页 > 编程语言 > 详细

Swift 删除 Main.storyboard 和 LaunchScreen.storyboard

时间:2016-03-18 10:51:43      阅读:465      评论:0      收藏:0      [点我收藏+]

标签:

第一步: 
右键选中Main.storyboard —- delete —— Move to Trash 
LaunchScreen同理 
第二步 
点击工程名,就是最顶级目录 
右侧出现general选项卡 
将Deployment info组内的Main Interface设为空 
将App Icons and Launch Images 组内的 Launch Images Source设置为资源文件 
(这一步很重要,如果不设置启动页,上下就会出现黑边,无法适配iPhone5等大屏幕
第三步 
打开info.plist,删除Launch screen interface file base name 和 Main storyboard file base name选项。 
第四步 
指定第一个页面 
打开AppDelegate.swift 
在application方法中自定义 
例如

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {

        // Override point for customization after application launch.

        window = UIWindow(frame: UIScreen.mainScreen().bounds)

        

        window?.backgroundColor = UIColor.whiteColor()

        

        window?.rootViewController = ViewController()

        

        window?.makeKeyAndVisible()

        

        return true

    }

Swift 删除 Main.storyboard 和 LaunchScreen.storyboard

标签:

原文地址:http://www.cnblogs.com/huangzs/p/5291095.html

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