gpt4 book ai didi

iphone - 如何防止触摸空格键时键盘从数字变为字母?

转载 作者:行者123 更新时间:2023-12-03 18:59:03 25 4
gpt4 key购买 nike

我在表格上有 UITextFields 用于输入值。其中一些字段只接受数字。我使用 UIKeyboardTypeNumbersAndPunctuation 作为键盘类型,并使用 shouldChangeCharactersInRange 来过滤字符。

此外,所有更正均被禁用:

textField.keyboardType = UIKeyboardTypeNumbersAndPunctuation;
textField.autocorrectionType = UITextAutocorrectionTypeNo;
textField.autocapitalizationType = UITextAutocapitalizationTypeNone;

在仅限数字的字段中,当触摸空格键时,键盘将更改为字母。我知道这是默认行为。我想忽略空格键,并且不希望更改键盘类型。

有什么方法可以改变这种默认行为吗?

PS:不能选择其他数字键盘类型。我需要标点符号!

谢谢

最佳答案

我认为无法修改键盘行为。

但是,您可以实现 textField:shouldChangeCharactersInRange:replacementString:从 UITextFieldDelegate 协议(protocol)中截取空格(和撇号),如下所示,它似乎有效:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
if ([string isEqualToString:@" "] || [string isEqualToString:@"'"]) {
NSMutableString *updatedString = [NSMutableString stringWithString:textField.text];
[updatedString insertString:string atIndex:range.location];
textField.text = updatedString;
return NO;
} else {
return YES;
}
}

关于iphone - 如何防止触摸空格键时键盘从数字变为字母?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2071561/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com