转自:http://blog.csdn.net/li6185377/article/details/7628670
如果 你想你的程序 能在 IOS 5以下运行
那你就不能使用 如:StoreBoard,ParentController,ARC 等等一堆元素。
建立简单的程序 一开始 选择 Single View Application 就OK了 相当于 以前版本的 View-Application
主要注意的是 Use storyboard 和 Use ARC 不要打上勾
后面就跟以前的一样了 就是不能用 Segue 进行页面的跳转
还有个 新建Empty Application 方法 相当于 以前的 Window-Application
新建出来的 程序巨干净
随便建个 Controller
在AppDelegate.m 文件中 更改成下面这样
1 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 2 3 { 4 5 self.window = [[[UIWindowalloc] initWithFrame:[[UIScreenmainScreen] bounds]]autorelease]; 6 7 // Override point for customization after application launch. 8 9 self.window.backgroundColor = [UIColorwhiteColor]; 10 11 12 13 mainViewController* main = [[mainViewControlleralloc]init]; 14 15 self.window.rootViewController = main; 16 17 18 19 // 也可以以 添加View 的方式 20 21 // [self.window addSubview:main.view]; 22 23 24 //以 Navigation为Root 25 26 // UINavigationController* navigation = [[UINavigationController alloc]initWithRootViewController:main]; 27 28 // self.window.rootViewController = navigation; 29 30 31 32 [self.windowmakeKeyAndVisible]; 33 34 return YES; 35 36 }
这样就变成了 View-Application 其实 你可以建立Xcode 那些模版 看它生成的代码
最后 设下 你开发的版本号