UITextField : restrict the maximum allowed value (number) during inputting(UITextField : 限制输入时允许的最大值(数字))
问题描述
我有一个UITextField,我想限制该字段中允许的最大输入值为1000.那是当用户在里面输入数字时,一旦输入值大于999,除非用户输入小于 1000 的值,否则输入字段中的值将不再更新.
I have a UITextField, I'd like to restrict the maximum allowed input value in the field to be 1000. That's when user is inputting number inside, once the input value is larger than 999, the value in input field won't be updated anymore unless user is inputting value less than 1000.
我想我应该使用 UITextField 委托来限制输入:
I think I should use UITextField delegate to limit the input:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
//How to do
}
但我不确定如何实现它.有什么建议吗?
But I am not sure how to implement it. Any suggestions?
==========更新=============
我的输入框不仅允许用户输入整数,还可以输入浮点值,如 999,03
my input field not only allow user to input integer, but also float value like 999,03
推荐答案
你应该在上面的方法中做以下事情:
You should do the following inside the above method:
NSString *newString = [textField.text stringByReplacingCharactersInRange:range withString:string];
//first, check if the new string is numeric only. If not, return NO;
NSCharacterSet *characterSet = [[NSCharacterSet characterSetWithCharactersInString:@"0123456789,."] invertedSet];
if ([newString rangeOfCharacterFromSet:characterSet].location != NSNotFound)
{
return NO;
}
return [newString doubleValue] < 1000;
这篇关于UITextField : 限制输入时允许的最大值(数字)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UITextField : 限制输入时允许的最大值(数字)
基础教程推荐
- 我的 UIImageView 的任务 2022-01-01
- 在 appComponent dagger 2 中动态添加测试模块? 2022-01-01
- 如何将多个组件添加到 PickerView? 2022-01-01
- 新的@SystemApi 注解是什么意思,和@hide 有什么区别 2022-01-01
- - (CGRect)convertRect:(CGRect)rect toView:(UIView *)view 如何工作 2022-01-01
- 在 Android 模拟器中激活网络位置提供程序? 2022-01-01
- 可可/目标C(OSX不是iOS)从子对象访问父对象 2022-01-01
- 突出显示朗读文本(在 iPhone 的故事书类型应用程序中) 2022-01-01
- Android:STATE_SELECTED不工作 2022-01-01
- 在 iOS8 中无法获得正确的键盘高度值 2022-01-01
