在Xcode6中怎么建立一个空工程

   1. 打开Xcode6,创建一个Single View Application工程

   2. 创建好后,把工程目录下的Main.storyboard和LaunchScreen。xib删除
   
   3. 打开info.plist,把Launch screen inteface file base name, 以及Main storyboard file base name两项
   
   删除。
   
   4.点击progect的targect,找到Launch Images Source 点击migrate即可。
   
   5. 在AppDelegate里加上几句代码:
   
   //OC需要添加的代码
 
   self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
   
   self.window.backgroundColor = [UIColor whiteColor];
   
   [self.window makeKeyAndVisible];


你可能感兴趣的:(在Xcode6中怎么建立一个空工程)