检查 UITextField 是否有击键发生,这让我发疯:-)

发布于 2024-09-26 05:59:13 字数 737 浏览 3 评论 0原文

我对此很陌生,很抱歉问这个问题。

我试图让它适用于我的代码,但就是不明白。无论我似乎做什么,我按下的键都会在一次击键后显示在 NSLog 中。我知道“shouldChangeCharactersInRange”是这样工作的,我已经浏览并尝试测试我找到的一些解决方案。一种是: 使用 `textField:shouldChangeCharactersInRange:`,如何我能得到包含当前输入字符的文本吗? 但我仍然不明白。

在我尝试让它工作并将其改回来之后,我当前的测试代码:

-(BOOL) textField: (UITextField *)theTextField shouldChangeCharactersInRange: (NSRange)range replacementString: (NSString *)string {
    NSLog(@"%@", MyTextField.text);

    MyTextField.text = MyTextField.text;

   return YES;
}

MyTextField 是我输入的文本字段。

有人可以告诉我如何完成这项工作,以便我可以跟踪每次击键发生时的情况,而不是之后的击键吗?

I am very new to this and i am sorry to ask this question.

I am trying to get this to work for my code but just don't get it. Whatever i seems to do the key that i press show up in the NSLog one key stroke after. I know that the 'shouldChangeCharactersInRange' works this way and i have surfed and tried to test some solutions i have found. One is: Using `textField:shouldChangeCharactersInRange:`, how do I get the text including the current typed character? but i still just don't get it.

my current test code after i have tried to get it to work and changed it back:

-(BOOL) textField: (UITextField *)theTextField shouldChangeCharactersInRange: (NSRange)range replacementString: (NSString *)string {
    NSLog(@"%@", MyTextField.text);

    MyTextField.text = MyTextField.text;

   return YES;
}

MyTextField is the textfield i type into.

Could someone nice show me how to get this work so i can track each keystroke when it happens and not the keystroke after?

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

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

发布评论

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

评论(1

○闲身 2024-10-03 05:59:13

要查看刚刚按下的键,请使用:

NSLog(@"%@", string);

从技术上讲,这可能是多个字符,例如剪切、粘贴或撤消操作。

在该方法完成之前,文本字段的值实际上不会改变。如果您想查看文本字段的值是什么,请使用

NSLog(@"%@", [MyTextField.text stringByReplacingCharactersInRange:range withString:string);

To see the key that was just pressed, use:

NSLog(@"%@", string);

Technically, this could be more than one character, like with a cut, paste, or undo operation.

The value of the text field doesn't actually change until after the method completes. If you want to see what the value of the text field will be, use

NSLog(@"%@", [MyTextField.text stringByReplacingCharactersInRange:range withString:string);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文