// 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的情况下手动更改旧项目.
总结以上是内存溢出为你收集整理的xcode – 在iOS应用程序中真正需要一个MainWindow.xib吗?全部内容,希望文章能够帮你解决xcode – 在iOS应用程序中真正需要一个MainWindow.xib吗?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)