gpt4 book ai didi

ios - 如何限制 UITextField 中的小数点数?

转载 作者:IT王子 更新时间:2023-10-29 07:52:14 26 4
gpt4 key购买 nike

我有一个 UITextField,单击它会在左下角显示一个带有小数点的数字键盘。我正在尝试限制该字段,以便用户只能放置 1 个小数点

例如
2.5 确定
2..5 不行

最佳答案

像这样实现 shouldChangeCharactersInRange 方法:

// Only allow one decimal point
// Example assumes ARC - Implement proper memory management if not using.
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
NSString *newString = [textField.text stringByReplacingCharactersInRange:range withString:string];
NSArray *arrayOfString = [newString componentsSeparatedByString:@"."];

if ([arrayOfString count] > 2 )
return NO;

return YES;
}

这将创建一个由小数点分隔的字符串数组,因此如果有一个以上的小数点,我们将在数组中至少有 3 个元素。

关于ios - 如何限制 UITextField 中的小数点数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10404067/

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