菜鸟教程小白 发表于 2022-12-12 13:17:50

ios - 如何根据 TextField 的可见大小限制 UITextField 的输入文本量?


                                            <p><p>我有一个表单应用程序,其中包含许多不同大小的 UITextField。我想将输入文本的数量限制为在截断字符串之前文本字段可以容纳多少文本。关于堆栈溢出的所有其他答案似乎都知道事先限制字符的数量(例如,我想限制为 40 个字符),但我需要知道如何根据文本字段的大小(因文本字段而异)来限制它到文本字段)。</p>

<p>有没有办法做到这一点?</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>由于字符串的长度取决于字符,因此您无法在知道它们之前确定最大字符数,因此我建议您在进行过程中测试每个字符输入是否适合文本字段,例如: </p>

<pre><code>- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {

    // Combine the new text with the old
    NSString *combinedText = ];

    // See if the width of the combined text + the text field&#39;s
    // left layout margin + the text field&#39;s right layout margin
    // is greater than or equal to the width of the textField
    // (I&#39;ve multiplied the right margin by 2 to prevent the cursor
    // from shifting the field one extra character when the text field
    // if full)
    CGFloat textWidth =.width + textField.layoutMargins.left + textField.layoutMargins.right * 2;
    CGFloat textFieldWidth = textField.frame.size.width;

    // If the text + margins is as wide or wider than the text field
    // don&#39;t add the new character, i.e. return NO. Else add the
    // character by returning YES.
    if (textWidth &gt;= textFieldWidth) {
      return NO;
    } else {
      return YES;
    }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何根据 TextField 的可见大小限制 UITextField 的输入文本量?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27449895/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27449895/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何根据 TextField 的可见大小限制 UITextField 的输入文本量?