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

iOS新建项目基本配置

时间:2016-05-11 11:15:53      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

项目整体同xib+代码的方式

1.调整项目文件结构

2.将资源图片导入工程

  •   General->LaunchScreen 修改

3.App名称修改

  info->Bundle name

4.删除StoryBoard 并修改 General->Main Interface删除

5.为App创建窗口

  AppDelegate.h

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // 创建窗口
    self.window = [[UIWindow alloc] init];
    self.window.frame = [UIScreen mainScreen].bounds;
    
    // 设置窗口的根控制器
    self.window.rootViewController = [[XMGTabBarController alloc] init];
    
    // 显示窗口
    [self.window makeKeyAndVisible];
    
    // 显示推送引导
    [XMGPushGuideView show];
    return YES;
}

6.项目头文件,整个项目的头文件PCH文件的建立

  • new File->other -> PCH file(文件名默认) 
  • Build Seetting - > 搜过Prefix Header ->输入PCH文件的路径(项目文件夹名称/Classes/Other/PrefixHeader.pch)

技术分享

 

iOS新建项目基本配置

标签:

原文地址:http://www.cnblogs.com/oshushu/p/5481028.html

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