0

我使用 xcode 5 和 ios 7 从头开始​​重新创建了我的应用程序。我已将部署目标设置为 ios 5.0。我能够使用 xcode 5 在所有 ios 5.0+ 模拟器上成功运行该应用程序。并且我能够将我的应用程序的 ios 7.0 版本存档到我的 iPhone 上而不会出现问题。

当我尝试使用 xcode 4.6.3 使用 ios 6.1 sdk 通过应用程序构建时,就会出现问题。我收到以下构建错误:

"The document Main.storyboard could not be opened. Could not read archive."

我在源代码视图中打开该文件,并在顶部看到:

<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="4510" systemVersion="12E55" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" initialViewController="rS3-R9-Ivy">

我将版本更改为 2.0,这是一些人给出的建议。这样做之后,我清理并重建并得到以下错误:

"The document Main.storyboard could not be opened. Failed to unarchive element named 'tableViewCellContentView'."

我现在不知道该怎么做。如果有帮助,tableViewCellContent 会在情节提要源代码中显示两次:

<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jxu-2I-e7e" id="p3Z-Dy-Wwr">
                                            <rect key="frame" x="0.0" y="0.0" width="320" height="43"/>
                                            <autoresizingMask key="autoresizingMask"/>
                                            <subviews>
                                                <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Share Location" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="QHi-wS-Lfa">
                                                    <rect key="frame" x="20" y="11" width="116" height="21"/>
                                                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
                                                    <fontDescription key="fontDescription" type="system" pointSize="17"/>
                                                    <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
                                                    <nil key="highlightedColor"/>
                                                </label>
                                                <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="jfR-fE-3PU">
                                                    <rect key="frame" x="251" y="6" width="51" height="31"/>
                                                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
                                                    <inset key="insetFor6xAndEarlier" minX="20" minY="-2" maxX="-20" maxY="2"/>
                                                </switch>
                                            </subviews>
                                        </tableViewCellContentView>

<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ase-uh-S8O" id="Qfa-Dd-22s">
                                    <rect key="frame" x="0.0" y="0.0" width="320" height="43"/>
                                    <autoresizingMask key="autoresizingMask"/>
                                    <subviews>
                                        <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="m8y-pR-Z3V">
                                            <rect key="frame" x="15" y="3" width="36" height="22"/>
                                            <autoresizingMask key="autoresizingMask"/>
                                            <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
                                            <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
                                            <nil key="highlightedColor"/>
                                        </label>
                                        <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Subtitle" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="4bW-Fg-tmx">
                                            <rect key="frame" x="15" y="25" width="43" height="15"/>
                                            <autoresizingMask key="autoresizingMask"/>
                                            <fontDescription key="fontDescription" type="system" pointSize="12"/>
                                            <color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
                                            <nil key="highlightedColor"/>
                                        </label>
                                    </subviews>
                                </tableViewCellContentView>

如果我从源代码中删除上面的这两个片段,我可以使用 ios 6.1 sdk 在 xcode 4.6.3 中成功打开情节提要。但是,结果是 UI 不正确。

有什么想法不能与 ios 6.1 sdk 向后兼容吗?

4

1 回答 1

0

通过设置如下选项,您可以使用与 Xcode 4.6 兼容的 Xcode 5 创建/更新情节提要文件。

在此处输入图像描述

但是,一旦这样做,您将无法进行与 iOS 7 相关的 UI 更改。

于 2013-10-14T10:14:18.333 回答