标签:
iOS开发项目篇-01环境搭建
一、基本过程








1 //
2 // YYAppDelegate.m
3 // 01-微博环境搭建
4 //
5 // Created by apple on 14-7-3.
6 // Copyright (c) 2014年 itcase. All rights reserved.
7 //
8
9 #import "YYAppDelegate.h"
10
11 @implementation YYAppDelegate
12
13 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
14 {
15
16 //1.创建窗口
17 self.window=[[UIWindow alloc]init];
18 self.window.frame=[UIScreen mainScreen].bounds;
19
20 //2.设置窗口的根控制器
21 UITabBarController *tabbarVc =[[UITabBarController alloc]init];
22 self.window.rootViewController=tabbarVc;
23
24 //3.显示窗口
25 [self.window makeKeyAndVisible];
26 return YES;
27 }
28
运行(模拟器欢迎界面):

三、IOS6和IOS7的适配
修改配置信息版本为6.1

查看模拟器:

说明:该Xcdoe额外装载了ios6.1的模拟器。这个项目只能跑在6.1或者是7.1(自带)的系统上,如果需要查看系统在不同版本中的效果,建议先切换设备,再运行,这样速度会更快一点。
去掉图标的高亮效果

注意:图片在系统中会有缓存,先clear,删除应用程序之后,再次运行。
设置在程序启动过程中隐藏状态栏

标签:
原文地址:http://www.cnblogs.com/panyangjun/p/4318748.html