xcode – 在iOS应用程序中真正需要一个MainWindow.xib吗?

前端之家收集整理的这篇文章主要介绍了xcode – 在iOS应用程序中真正需要一个MainWindow.xib吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在使用 Xcode 4.2进行任何类型的iOS 5.0开发之前,Xcode在模板中提供了一个“MainWindow.xib”.在下载并使用iOS 5.0的Xcode 4.2播放后,我注意到没有提供任何模板包含任何“MainWindow.xib”文件.我们需要这个了吗我注意到在App_Delegate中的“application didFinishLaunchingWithOptions”方法中,模板现在包括创建一些“UIWindow”的代码,如果您有任何导航控制器,则会相应地更新该窗口.
// code that was pulled from a Master Detail application template
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.

    MasterViewController *masterViewController = [[MasterViewController alloc] initWithNibName:@"MasterViewController" bundle:nil];
    self.navigationController = [[UINavigationController alloc] initWithRootViewController:masterViewController];
    self.window.rootViewController = self.navigationController;
    [self.window makeKeyAndVisible];
    return YES;
}

我想我的问题是,是否需要一个“MainWindow.xib”,如果是这样,那么为什么Apple模板排除它们?

解决方法

我认为现在缺席的原因是,以编程方式创建窗口比打开xib文件和取消存档对象要高得多.一般来说,如果你可以在一行代码中执行,你应该在代码中执行.

阅读Matthew Gillingham的回答,了解如何在没有MainWindow.xib的情况下手动更改旧项目.

原文链接:https://www.f2er.com/iOS/329802.html

猜你在找的iOS相关文章