我有两个文本域。使用this将max字符设置为textfield非常有用。 我如何检查已使用的文本字段,以便设置不同的最大长度?
答案 0 :(得分:2)
我认为您正在尝试为文本字段设置不同的最大字符长度,然后首先在标题中为文本字段创建插座,
//header
IBOutlet UTtextField *textField1;
IBOutlet UITextField *textField2;
希望你已经做到了。
然后只需检查实现方法中的textField,我将修改答案:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
if(textField == textField1) {
NSUInteger newLength = [textField.text length] + [string length] - range.length;
return (newLength > 25) ? NO : YES;
}
else if(textField == textField2)
{
//do the same with different values
}
}
编辑您还可以为TextField设置标记并使用它,例如switch(textField.tag)
。