3

我最近从开发人员的网站下载了新的 xCode,在我所见的任何地方,我都找不到关于如何在没有情节提要的情况下打开项目的解决方案。

这对我很重要,因为我想让我的应用程序在 iOS 4.3 上运行。

我这样做的方式是在旧版本中打开项目,然后在新版本中打开它。但必须有另一种方式。

谢谢!

4

2 回答 2

15

移除故事板的步骤

1) 从您的项目中删除 Main.storyboard 文件。

2) 使用 xib 为您的控制器添加新文件,如果未在构建阶段的编译源中添加,则手动添加。

3) 从 plist 中删除主故事板文件基本名称。

4) 更改 appdelegate didFinishLaunchingWithOptions 文件并添加:

self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] ;

[self.window makeKeyAndVisible];

就像 :

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
 {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] ;

     // Override point for customization after application launch.

     TestViewController *test = [[TestViewController alloc]     initWithNibName:@"TestViewController" bundle:nil];
     UINavigationController *nav = [[UINavigationController alloc]  initWithRootViewController:test];
     self.window.rootViewController = nav;

     [self.window makeKeyAndVisible];

     return YES;
}
于 2013-09-25T06:29:05.210 回答
4

只需选择 Empty Application 模板,我的朋友

在此处输入图像描述

于 2013-09-21T12:19:12.270 回答