Xcode将xib文件作为常规文本文件打开

时间:2013-07-20 07:40:57

标签: xcode

我有一个带.xib文件的Xcode项目。当我尝试打开它们时,Xcode显示这些文件的纯文本,它不显示Interface Builder接口。

如何让Xcode向我展示我想要的东西?

我已经清理了项目并重新启动了我的电脑。没有帮助。

Screenshot of Xcode showing xib file as plain text

请帮助我。

2 个答案:

答案 0 :(得分:25)

问题是你选择了版本编辑器:

Xcode 6:version editor selected ... Xcode 9:version editor selected

版本编辑器只能显示源代码。它无法以图形方式显示xib。您需要切换到标准编辑器。以下是切换到标准编辑器的三种方法:

  • 按Command-Return。

  • 转到菜单栏,然后​​选择查看>标准编辑器>显示标准编辑器。

  • 单击工具栏中“编辑器”分段控件中最左边的按钮:

Xcode 6:standard editor selected ... Xcode 9:enter image description here

答案 1 :(得分:3)

在文件列表中的.xib文件中,您可以右键单击并选择Open As ...并选择Source Code或Interface Builder。