阻止用户在Objective-C中输入多个小数



我正在制作一个唯一的数字输入应用程序(仍然),其中用户按下按钮,我将值存储到字符串中以显示在标签中。

在大多数情况下工作得很好,除了我不知道如何防止用户在单个字符串中输入多个小数。

我看了这个堆栈溢出问题,但是试图修改我自己的代码只是导致了一大堆错误。有人有什么建议吗?

- (void)numberBtn:(UIButton *)sender {
if (self.sales.text.length < 10) {
if(self.sales.text.length != 0){
NSString *lastChar = [self.sales.text substringFromIndex:[self.sales.text length] - 1];

if([lastChar isEqualToString:@"."] && [sender.titleLabel.text isEqualToString:@"."] && [sender.titleLabel.text stringByAppendingString:@"."]){
return;   
}

if ([lastChar isEqualToString:@""] && [sender.titleLabel.text isEqualToString:@""]){
self.numbers = @"0.";
}
if ([self.sales.text rangeOfString:@"."].length > 0) {
NSArray *array = [self.sales.text componentsSeparatedByString:@"."];
if (array.count == 2) {
NSString *decimal = array.lastObject;
if (decimal.length > 2) {
return;
}
}
}
}

self.numbers = [NSString stringWithFormat:@"%@%@",self.numbers,sender.titleLabel.text];
self.sales.text = self.numbers;
}
}

两步走…

  • 检查按钮是否为十进制.
  • 如果是,查看当前标签文本是否已经包含.

如果是,返回。如果没有,继续处理按钮输入:

- (void)numberBtn:(UIButton *)sender {
NSString *btnTitle = sender.currentTitle;
NSString *curText = self.sales.text;
if ([btnTitle isEqualToString:@"."]) {
if ([curText containsString:@"."]) {
NSLog(@"%@ : Already has a decimal point!", curText);
return;
}
}
// whatever else you want to do with the input...
}

相关内容

  • 没有找到相关文章

最新更新