xcode UITextfield вид изнутри не редактируется - PullRequest
0 голосов
/ 10 июля 2019

Я добавил несколько текстовых полей в просмотре стека, а под просмотром стека я добавил 2 просмотра, чтобы я мог создавать новые столбцы. Внутри этих представлений я разместил свои текстовые файлы. Теперь, когда я запускаю его, текстовые файлы Tje не редактируются. Я попытался добавить новое текстовое поле вне стека и оно работает очень хорошо.

Можете ли вы помочь мне с этим? Я добавил текстовое поле, перетащив их в свой контроллер, чтобы не было никаких кодов.

<stackView contentMode="scaleToFill" distribution="fillEqually" alignment="top" spacing="20" translatesAutoresizingMaskIntoConstraints="NO" id="7mt-mS-PCA" userLabel="Add Project">
    <rect key="frame" x="40" y="110" width="1286" height="289"/>
    <subviews>
        <view contentMode="scaleToFill" semanticContentAttribute="playback" translatesAutoresizingMaskIntoConstraints="NO" id="VRJ-lA-xQb">
            <rect key="frame" x="0.0" y="0.0" width="633" height="289"/>
            <subviews>
                <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Orderer" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Upf-s1-e9P">
                    <rect key="frame" x="10" y="10" width="47" height="16"/>
                    <fontDescription key="fontDescription" type="system" pointSize="13"/>
                    <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                    <nil key="highlightedColor"/>
                </label>
                <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="jg6-wU-2yV">
                    <rect key="frame" x="10" y="36" width="613" height="30"/>
                    <nil key="textColor"/>
                    <fontDescription key="fontDescription" type="system" pointSize="14"/>
                    <textInputTraits key="textInputTraits"/>
                    <connections>
                        <action selector="OrdererInput:" destination="VWK-Bs-FSH" eventType="editingDidEnd" id="GhB-dm-tKQ"/>
                    </connections>
                </textField>
                <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Constuction Area" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Naf-MF-mdY">
                    <rect key="frame" x="10" y="76" width="105" height="16"/>
                    <fontDescription key="fontDescription" type="system" pointSize="13"/>
                    <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
                    <nil key="highlightedColor"/>
                </label>
                <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="j44-Dv-X7S">
                    <rect key="frame" x="10" y="102" width="613" height="30"/>
                    <nil key="textColor"/>
                    <fontDescription key="fontDescription" type="system" pointSize="14"/>
                    <textInputTraits key="textInputTraits"/>
                </textField>

Вот часть кода.

...