如何根据 TextField 的可见大小限制 UITextField 的输入文本量?
Posted
技术标签:
【中文标题】如何根据 TextField 的可见大小限制 UITextField 的输入文本量?【英文标题】:How to limit the amount of input text of a UITextField based on the visible size of the TextField? 【发布时间】:2014-12-12 18:32:42 【问题描述】:我有一个表单应用程序,其中包含许多不同大小的 UITextField。我想将输入文本的数量限制为在截断字符串之前文本字段可以容纳多少文本。堆栈溢出的所有其他答案似乎都知道事先限制字符的数量(例如,我想限制为 40 个字符),但我需要知道如何根据文本字段的大小(因文本字段而异)来限制它到文本字段)。
有没有办法做到这一点?
谢谢
【问题讨论】:
我刚刚使用 textField.layoutMargins.left 和 textField.layoutMargins.right 属性更新了我的答案以获得更高的准确性。 【参考方案1】:由于字符串的长度取决于字符,因此您无法在知道它们之前确定最大字符数,因此我建议您在进行过程中测试每个字符输入是否适合文本字段,例如:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)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;
【讨论】:
@GoshDangitBobby 很高兴听到 :)和伟大的名字!在写那句话之前,我觉得输入它非常酷。天哪 ;)以上是关于如何根据 TextField 的可见大小限制 UITextField 的输入文本量?的主要内容,如果未能解决你的问题,请参考以下文章
一个简单的问题:Material-UI TextField,如何在不同的断点设置不同的字体大小?
如何更改 Material ui 自动完成中选项的字体大小?
使用材质 ui 和 React,在 TextField 中更改 `carrot` 的样式
IOS开发-UI学习-根据URL显示图片,下载图片的练习(button,textfield,image view,url,data)