UITextField : 限制输入时允许的最大值(数字)

UITextField : restrict the maximum allowed value (number) during inputting(UITextField : 限制输入时允许的最大值(数字))
本文介绍了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 : 限制输入时允许的最大值(数字)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)
Cocos2d - How to check for Intersection between objects in different layers(Cocos2d - 如何检查不同层中对象之间的交集)
Resume game cocos2d(恢复游戏 cocos2d)
Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)
How to convert 32 bit PNG to RGB565?(如何将 32 位 PNG 转换为 RGB565?)
Proper cocos2d scene restart?(正确的 cocos2d 场景重启?)