主故事板无法打开

时间:2013-05-08 19:21:58

标签: xcode

我正在尝试使用模拟器为学校构建此应用程序,但每当我尝试构建它时,我都会收到此错误:

The document "MainStoryboard_iPhone.storyboard" could not be opened. Line 134: XML       
declaration allowed only at the start of the document

我转到问题导航器,但就是它显示的全部内容。代码中没有显示错误。

以下是第134行在XML源代码中的部分:

    </view>
                    <tabBarItem key="tabBarItem" title="Item 1" id="JGk-R6-tUe"/> //This    
is line 134
                </viewController> 
                <placeholder placeholderIdentifier="IBFirstResponder" id="2cL-Ur-7Xa"   
userLabel="First Responder" sceneMemberID="firstResponder"/>

2 个答案:

答案 0 :(得分:2)

您可以右键单击Storyboard文件并将其视为XML源代码。

Open as Source Code

从那里,您可以访问违规行,阅读XML并进行编辑,以便您最好地解决问题。

答案 1 :(得分:1)

编辑故事板文件,以便Xcode重新保存或在文本编辑器中打开它,看看是否需要编辑或删除第134行。听起来好像有一个第二个标签说它是第134行的XML文件。

相关问题