http://stackoverflow.com/questions/25783282/how-to-create-an-empty-application-in-xcode-6-without-storyboard?rq=1

There is no option in XCode6 for directly creating an Empty Application as in XCode5 and earlier. But still we can create application without Storyboard in XCode6 by following these steps:

  1. Create an Single View Application with XCode6
  2. Remove Main.storyboard and LaunchScreen.xib (select them, right-click, and choose to either remove them from the project, or delete them completely).
  3. Remove "Main storyboard file base name" and "Launch screen interface file base name" entries in Info.plist file.
  4. Open AppDelegate.m, and edit applicationDidFinishLaunchingWithOptions so that it looks like this:

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

最新文章

  1. [codevs 2800]送外卖
  2. Openfire Strophe开发中文乱码问题
  3. 学习笔记:iPhone终极指南、手机端、浏览器各种规范
  4. httpclient介绍
  5. mybatis中的变量#与$
  6. Jersey(1.19.1) - Rules of Injection
  7. css样式继承 第7节
  8. 【细说Java】Java封箱拆箱的一些问题
  9. SQL通用函数-nvl-nvl2 -nvlif-nullif-coalesce-decode-case
  10. aes加解密 Illegal key size
  11. eos 创建两对的公钥和私钥, 钱包,交易所转账到主网,主网到交易所
  12. 9;XHTML 多媒体
  13. [转帖]tar高级教程:增量备份、定时备份、网络备份
  14. Unity3D热更新LuaFramework入门实战
  15. 手把手教你从零搭建Python数据分析环境
  16. C# 判断程序是否已经在运行
  17. PHP入门1
  18. PAT 天梯赛 L1-011. A-B 【水】
  19. 买手机时几GB+几GB啥意思
  20. C Primer Plus学习笔记(二)- 数据和C

热门文章

  1. WPF FileFolderDialog 和弹出子窗口的一些问题
  2. 使用CHttpFile从服务器端正确的读取数据
  3. [cocos2d-x 2.0.4][iOS7]不能全屏问题
  4. 简单易用的Rest
  5. DB天气app冲刺第五天
  6. hdu 1540 Tunnel Warfare (区间线段树(模板))
  7. Tesseract——OCR图像识别 入门篇
  8. Hyper-V中安装CentOS分辨率修改
  9. PHP扩展编写示例
  10. Ubuntu14.04下Unity桌面托盘图标显示问题