Xcode5 中是否有任何选项可以在没有启用情节提要的情况下创建新项目?
问问题
200 次
3 回答
2
从这里你可以得到完整的想法,它的好解决方案:
移除故事板的步骤
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-10-09T12:14:32.357 回答
1
我编写了一个将 Xcode 4 的项目模板转换为 Xcode 5 的工具,因此您可以再次创建带有或不带有情节提要的项目。你可以在 GitHub 上找到它:https ://github.com/jfahrenkrug/Xcode4templates
此答案中提供了更多信息:https ://stackoverflow.com/a/19777356/171933
享受!
于 2014-01-06T15:50:26.877 回答
0
选项1:
- 创建一个空项目。
选项 2:
- 删除情节提要文件
- 擦除目标设置中的“主界面”(默认为“主界面”)
- 在应用程序的 info.plist 中删除“主故事板文件名”条目
- 从自动生成的应用程序代码中删除所有与 Storyboard 相关的内容
- 实例化一个 UIWindow,实例化和设置它的 rootViewController 等等。
- 享受
于 2014-05-14T15:27:15.870 回答