3

我对它似乎是 Xcode 4.5 中的错误感到非常困惑。我无法在 Interface Builder 中设置新创建的 UIViewController 的根视图的 autoresizingMask 属性。这些是重现问题的步骤:

  • 创建一个新的故事板
  • 在文件检查器中取消选中使用自动布局
  • 选择默认场景的根视图
  • 转到尺寸检查器
  • Autosizing 对话框中的弹簧呈虚线、灰色且无法单击(支柱工作正常)。

如果我删除现有视图并从对象库中拖动一个新视图,则新视图将启用 autosizingMask(并且无法禁用)。

这在我正在处理的 2 个项目中发生了两次,但在新创建的项目中没有发生。我错过了什么吗?什么可以触发这种行为?

这是测试故事板的 XML。第一个 ViewControllerstoryboardIdentifier="springsWorking"是我编辑删除原始视图的那个,第二个storyboardIdentifier="default"是默认的。

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="2.0" toolsVersion="2844" systemVersion="12C60" targetRuntime="iOS.CocoaTouch.iPad" propertyAccessControl="none" initialViewController="KEy-1l-Qqy">
<dependencies>
    <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="1930"/>
</dependencies>
<scenes>
    <!--View Controller-->
    <scene sceneID="dwh-DZ-gCp">
        <objects>
            <viewController storyboardIdentifier="springsWorking" id="KEy-1l-Qqy" sceneMemberID="viewController">
                <view key="view" contentMode="scaleToFill" id="ngZ-jh-RR4">
                    <rect key="frame" x="0.0" y="20" width="768" height="1004"/>
                    <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                    <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
                </view>
            </viewController>
            <placeholder placeholderIdentifier="IBFirstResponder" id="jow-h4-M4B" userLabel="First Responder" sceneMemberID="firstResponder"/>
        </objects>
        <point key="canvasLocation" x="-428" y="-327"/>
    </scene>
    <!--View Controller-->
    <scene sceneID="445-Ak-YxL">
        <objects>
            <viewController storyboardIdentifier="default" id="ZA8-km-Ecn" sceneMemberID="viewController">
                <view key="view" contentMode="scaleToFill" id="lRF-Uf-5lh">
                    <rect key="frame" x="0.0" y="20" width="768" height="1004"/>
                    <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
                    <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
                </view>
            </viewController>
            <placeholder placeholderIdentifier="IBFirstResponder" id="fZf-TK-JQE" userLabel="First Responder" sceneMemberID="firstResponder"/>
        </objects>
        <point key="canvasLocation" x="760" y="-313"/>
    </scene>
</scenes>
<simulatedMetricsContainer key="defaultSimulatedMetrics">
    <simulatedStatusBarMetrics key="statusBar" statusBarStyle="blackTranslucent"/>
    <simulatedOrientationMetrics key="orientation"/>
    <simulatedScreenMetrics key="destination"/>
</simulatedMetricsContainer>

4

1 回答 1

11

在“属性检查器”(右侧面板;图标看起来像一个滑块)中,在“模拟指标”下打开“大小”弹出窗口并选择“自由形式”。这将解锁这些控件。(否则,它会将大小与全屏匹配,因为它认为这就是您想要的。)

于 2013-01-15T01:27:30.890 回答