我正在尝试在 UITextField 中使用 enter 后添加 - 。情况是添加信用卡/借记卡号码。我已经四处搜索,但据我所知,这些方法无效。我在 delegate 方法中将限制设置为 19 个字符,即 16 个卡号和 3 个 - :
- (BOOL)textFieldUITextField *)textField shouldChangeCharactersInRangeNSRange)range replacementStringNSString *)string {
NSUInteger length = [[textField text] length] - range.length + string.length;
return textField.text.length <=19;
}
所以现在 length 给了我确切的长度 if UITextField 当时。现在哪个工作正常我需要知道如果此字段达到 3 、7 或 11 添加 - 在字段中。将输入的所有卡片都采用这种格式 xxxx-xxxx-xxxx-xxxx 所以这就是我想要在 4 个字符后添加 - 的方法。
我也在 delegate 方法中尝试过这个方法,但没有成功:
NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
[formatter setGroupingSeparator"-"];
[formatter setGroupingSize:4];
[formatter setUsesGroupingSeparator:YES];
NSString *num = textField.text ;
num= [num stringByReplacingOccurrencesOfString"" withString"-"];
NSString *str = [formatter stringFromNumber:[NSNumber numberWithDouble:[num doubleValue]]];
textField.text=str;
NSLog(@"%@",str);
return textField.text.length <=19;
Best Answer-推荐答案 strong>
在你的委托(delegate)方法中试试这个,这是另一种方法
if (textField.text.length < 19 && ![string isEqualToString""]) {
NSString *tempoText = textField.text;
tempoText = [tempoText stringByReplacingOccurrencesOfString"-" withString""];
if (tempoText.length >= 4) {
NSMutableString *mutString = [tempoText mutableCopy];
NSUInteger len = mutString.length / 4;
int j = 0;
for (int i = 1; i <= len; i ++) {
NSUInteger index = 4 * i;
index += j;
j++;
[mutString insertString"-" atIndex:index];
}
tempoText = mutString;
}
[textField setText:tempoText];
return YES;
}
关于ios - 如何在 UITextField 之间放置一个字符,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/34893579/
|