用户输入数据时设置文本字段格式

发布于 2024-09-06 02:42:47 字数 324 浏览 4 评论 0 原文

这就是我正在尝试做的事情。我有一个出生日期文本字段,当用户输入文本时,我希望该字段自动将其以 YYYY-MM-DD 的形式放入。基本上,当用户键入时,它会替换 Y、M 和 D,但保留连字符。我不知道该怎么做,我可能需要一个面具或其他东西。

我知道这是可以完成一些格式化的地方

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{

任何帮助都会有很大帮助

so here is what I am trying to do. I have a birth date text field, while the user in puts text i want the field to automatically put it in the form YYYY-MM-DD. Basically while the user types it replaces the Y's M's and D's but leaves the hyphen. I am not sure how to go about this i may need a mask or something.

I know this is where some of the formatting can be done

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{

Any help would be of much help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

亽野灬性zι浪 2024-09-13 02:42:47

你想要一个 NSDateFormatter。另请参阅 Cocoa 数据格式化编程指南(在 iPhone 文档中)。

You want an NSDateFormatter. See also the Data Formatting Programming Guide for Cocoa (in the iPhone docs).

┾廆蒐ゝ 2024-09-13 02:42:47

好吧,这就是我现在所拥有的

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    //Format Date of Birth YYYY-MM-DD
    if(textField == txtDOB)
    {
        if ((txtDOB.text.length == 4)||(txtDOB.text.length == 7))
            //Handle backspace being pressed
            if (![string isEqualToString:@""])
            txtDOB.text = [txtDOB.text stringByAppendingString:@"-"];
        return !([textField.text length]>9 && [string length] > range.length);
    }
    else
        return YES;

}

唯一的问题是,当我尝试退格时,它不起作用我的猜测是因为每次我按退格键时它都试图添加破折号。有人知道解决方法吗?

OK so here is what i have now

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    //Format Date of Birth YYYY-MM-DD
    if(textField == txtDOB)
    {
        if ((txtDOB.text.length == 4)||(txtDOB.text.length == 7))
            //Handle backspace being pressed
            if (![string isEqualToString:@""])
            txtDOB.text = [txtDOB.text stringByAppendingString:@"-"];
        return !([textField.text length]>9 && [string length] > range.length);
    }
    else
        return YES;

}

Only problem is that when i try to back space, it doesn't work my guess is because it is trying to add the dash every time i hit the backspace key. Anyone know a work around?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文