我正在开发一个拥有多个UITextField的应用。对于一个UITextField,我已将其委托设置为self并调用委托方法:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
执行特定任务。但是,我在同一屏幕上有其他UITextFields,我想做一些完全不同的事情,在这种情况下,将输入的字符数限制为两个。不幸的是,我在网上看到这种可能性的唯一方法是使用上述方法来制定限制。如果我已经使用上述方法为另一个UITextField做了一些完全不同的事情,这仍然是可能的吗?如果是的话,怎么做?
对于记录,这是我当前的委托方法实现:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
if([[string stringByTrimmingCharactersInSet:[NSCharacterSet controlCharacterSet]]
isEqualToString:@""])
return YES;
NSString *previousValue = [[[textField.text stringByTrimmingCharactersInSet:[[NSCharacterSet decimalDigitCharacterSet] invertedSet]] stringByReplacingOccurrencesOfString:@"." withString:@""] stringByReplacingOccurrencesOfString:@"," withString:@""];
string = [string stringByTrimmingCharactersInSet:[[NSCharacterSet decimalDigitCharacterSet] invertedSet]];
NSString *modifiedValue = [NSString stringWithFormat:@"%@%@", previousValue, string];
if ([modifiedValue length] == 1) {
modifiedValue = [NSString stringWithFormat:@"0.0%@", string];
}
else if ([modifiedValue length] == 2) {
modifiedValue = [NSString stringWithFormat:@"0.%@%@", previousValue, string];
}
else if ([modifiedValue length] > 2) {
modifiedValue = [NSString stringWithFormat:@"%@.%@",[modifiedValue substringToIndex: modifiedValue.length-2],[modifiedValue substringFromIndex:modifiedValue.length-2]];
}
NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
[formatter setNumberStyle:NSNumberFormatterCurrencyStyle];
NSDecimalNumber *decimal = [NSDecimalNumber decimalNumberWithString:modifiedValue];
modifiedValue = [formatter stringFromNumber:decimal];
textField.text = modifiedValue;
return NO;
}
答案 0 :(得分:2)
将您的文本字段用作班级中的属性。比方说,这是控制器的接口。
@interface YourViewController : UIViewContoller <UITextFieldDelegate> {
}
/*
* other properties
*/
@property(nonatomic, retain) UITextField *firstRestrictionTextField;
@property(nonatomic, retain) UITextField *yourSecondTextField;
@end
在您的实现中,两个文本字段都应设置为委托您的类:
self.firstRestrictionTextField.delegate = self;
self.yourSecondTextField.delegate = self;
当你实现委托方法时:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
if (textField == self.firstRestrictionTextField) {
// Do stuff you need in first textfield
}
if (textField == self.yourSecondTextField) {
// Do stuff for your second textfield
}
}
答案 1 :(得分:1)
在班级中创建UITextField
媒体资源:
@interface MyObject ()
@property (nonatomic, retain) UITextField *textField1;
@end
然后在委托方法中,只检查文本字段是否与您保存的文本字段相同:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
. . .
if (textField == [self textField1]) {
// do stuff here
} else {
// do stuff here for other text fields
}
. . .
}
答案 2 :(得分:0)
您想要使用相同的方法。见第一部分:
- (BOOL)textField:(UITextField *)textField
该方法允许您识别哪个textField正在触发此委托方法。然后你只需要做一些逻辑来为不同的textFields执行不同的任务。
像:
if (textField1){action 1}
else if (textField2){action 2}
else {default action}
答案 3 :(得分:0)
声明文本字段:
@property(nonatomic, strong)UITextField *textField1;
@property(nonatomic, strong)UITextField *textField2;
//etc
给它一个标签:
self.textField1.tag = 1;//or whatever
self.textField2.tag = 2;//or whatever
//etc
然后在textField:shouldChangeCharactersInRange:
中,您可以测试并采取不同的行为:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
if(textField.tag == 1){
//textfield1
}
//etc
}
答案 4 :(得分:-1)
您可以为每个UITextField 设置不同的标记,并获取特定UITextField的 textField.tag 以定义委托方法中的行为