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

iOS学习之移除Main.storyboard

时间:2016-01-22 10:28:11      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

每次使用Single View Application模板创建工程之后,总是会有一个Main.storyboard文件,那么,当我们使用代码布局的时候,很显然是不需要它的。那么,如何将它从工程中移除呢?只要进行如下几步即可。

在工程配置中移除关联

技术分享

在TARGETS中,将Main InInterface选项中的值清空并保存设置。

移除Main.storyboard中的关联文件

技术分享

选择storyboard文件。将类关联文件项清空并保存设置。

移除Main.storyboard文件

技术分享

从工程中移除文件。

在AppDelegate中添加代码

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    
    ViewController *viewController = [[ViewController alloc] init];
    self.window.rootViewController = viewController;
    
    self.window.backgroundColor = [UIColor purpleColor];
[self.window makeKeyAndVisible];
    
    return YES;
}

 

完成以上几步,运行工程即可,顺利运行,没有出现任何error或waring。

技术分享

iOS学习之移除Main.storyboard

标签:

原文地址:http://www.cnblogs.com/chars/p/5150155.html

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