我有一个表单应用程序,其中包含许多不同大小的 UITextField。我想将输入文本的数量限制为在截断字符串之前文本字段可以容纳多少文本。关于堆栈溢出的所有其他答案似乎都知道事先限制字符的数量(例如,我想限制为 40 个字符),但我需要知道如何根据文本字段的大小(因文本字段而异)来限制它到文本字段)。
有没有办法做到这一点?
谢谢
Best Answer-推荐答案 strong>
由于字符串的长度取决于字符,因此您无法在知道它们之前确定最大字符数,因此我建议您在进行过程中测试每个字符输入是否适合文本字段,例如:
- (BOOL)textFieldUITextField *)textField shouldChangeCharactersInRangeNSRange)range replacementStringNSString *)string {
// Combine the new text with the old
NSString *combinedText = [textField.text stringByReplacingCharactersInRange:range withString:[NSString stringWithFormat"%@", string]];
// See if the width of the combined text + the text field's
// left layout margin + the text field's right layout margin
// is greater than or equal to the width of the textField
// (I'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 = [combinedText sizeWithAttributes{NSFontAttributeName: textField.font}].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't add the new character, i.e. return NO. Else add the
// character by returning YES.
if (textWidth >= textFieldWidth) {
return NO;
} else {
return YES;
}
}
关于ios - 如何根据 TextField 的可见大小限制 UITextField 的输入文本量?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/27449895/
|