5创建基于xib的界面

5创建基于xib的界面

本文介绍了使用Xcode 5创建基于xib的界面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用Singe View模板创建一个新的应用程序,但没有xib或storyboard选项使我的界面成为xib文件!为什么Apple会从iOS 7中删除xib?!!如何使用xib接口文件创建应用程序?

I am trying to create a new app with Singe View template but there is no xib or storyboard option to make my interface as xib file !!! why does Apple remove xib from iOS 7 ?!! How can I create application with xib interface files ?

推荐答案


  • 创建新项目

  • 选择单一视图应用程序

  • 设置ProjectName和其他设置

  • 将项目保存在位置

  • 选择项目在左侧导航面板中

  • 从项目中删除Main.storyboard文件

  • 在项目中添加新的.xib文件

  • 在右侧面板的常规选项卡中将主界面设置为.xib文件。

  • 中粘贴以下代码didFinishLaunchingWithOptions method

    • Create a new project
    • Select Single View Application
    • Set ProjectName and other settings
    • Save Project at location
    • Select Project in Navigator Panel in Left
    • Remove Main.storyboard file from project
    • Add New .xib file in Project
    • Set Main Interface to your .xib file in "General Tab" on right panel.
    • Paste following code in didFinishLaunchingWithOptions method
    • self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
      self.window.rootViewController = [[UIViewController alloc] initWithNibName:@"YourViewController" bundle:nil];
      [self.window makeKeyAndVisible];
      


      这篇关于使用Xcode 5创建基于xib的界面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-28 03:24