菜鸟教程小白 发表于 2022-12-12 22:50:39

ios - 无法更改 UITextField 的宽度


                                            <p><p>我有一个 <code>UITextField</code>,我打算在用户触摸 <code>TextField</code> 并调出时以编程方式在其右侧添加一个 <code>UIButton</code>键盘。</p>

<pre><code>------------------------------
|--------------------------- |
||   textfield         | |
|--------------------------- |
------------------------------
</code></pre>

<p>当键盘被调出时:</p>

<pre><code>------------------------------
|------------------          |
||   textfield|BUTTON|
|------------------          |
------------------------------
</code></pre>

<p>我使用 <code>Storyboard</code> 和 AutoLayout 来构建界面,这些元素都连接良好。</p>

<p>当我试图改变 <code>UITextField</code> 的宽度时,它根本没有改变,导致 <code>Button</code> 被放置在文本字段的“内部”,就像截图如下:</p>

<p> <img src="/image/vpgRm.png" alt="enter image description here"/> </p>

<p>这是我的代码:</p>

<pre><code>// code to add the button
- (void)keyboardWasShown:(NSNotification*)aNotification
{
    // dynamically add a &#34;reply&#34; button
    button = ;
    ;
    ;
    // change button size &amp; position
    button.frame = CGRectMake(265.0, 10.0, 46.0, 30.0);
//    ;
    // change replyText size
    CGRect frameRct = replyText.frame;
    frameRct.size.width = 248.0;
    replyText.frame = frameRct;

    ;

}
</code></pre>

<p>我已经通过 Storyboard 设置了约束,那么是否可以让我在保持 AutoLayout 的同时以编程方式更改宽度? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我想我会为了好玩而尝试一下。这是我所做的:</p>

<p>1) 为文本字段和按钮设置父 View ,创建约束以将文本字段的右边缘与父 View 的右边缘保持恒定距离。请参阅此处突出显示的约束...</p>

<p> <img src="/image/zjlj8.png" alt="enter image description here"/> </p>

<p>2) 为该约束、按钮和 TextView 创建导出:</p>

<pre><code>@interface ViewController ()

@property (weak, nonatomic) IBOutlet UITextField *textField;
@property (weak, nonatomic) IBOutlet UIButton *button;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *textHorizontalTrailConstraint;

@end
</code></pre>

<p>3) 添加一个方法,让我们查询该约束的状态。当该约束具有非零常数时,键盘模式处于打开状态。</p>

<pre><code>- (BOOL)keyboardModeIsOn {
    return self.textHorizontalTrailConstraint.constant &gt; 0;
}
</code></pre>

<p>4) 最后,一种基于 bool 值调整约束和隐藏/取消隐藏按钮的方法。为了好玩,我添加了一个可选的 bool 来使过渡动画化。从您的键盘通知中调用它。</p>

<pre><code>- (void)setKeyboardModeOn:(BOOL)on animated:(BOOL)animated {

    if (on == ) return;

    CGFloat htrailConst = (on)? 132 : 0;
    CGFloat alpha = (on)? 1.0 : 0;
    NSTimeInterval duration = (animated)? 0.5 : 0;

    ;
    [UIView animateWithDuration:duration animations:^{
      self.textHorizontalTrailConstraint.constant = htrailConst;
      self.button.alpha = alpha;
      ;
    }];
}
</code></pre>

<p>我对此进行了测试,看起来不错。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 无法更改 UITextField 的宽度,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24091854/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24091854/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 无法更改 UITextField 的宽度