在结束编辑时执行操作

发布于 2024-11-08 17:43:34 字数 115 浏览 0 评论 0原文

我的 Objective-C Mac 应用程序中有一个文本字段。

这就是我想要的:当我停止在文本字段中书写超过 5 秒时,它会运行一些内容。这可能吗?

如果是这样,有人可以解释一下吗?

I have a text field in my Objective-C Mac app.

This is what I want: when I stop writing in the text field for more than 5 seconds, it runs something. Is this possible?

If so, can someone explain how?

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

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

发布评论

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

评论(2

旧话新听 2024-11-15 17:43:34
  1. 确保文本字段的连续选项已打开。
  2. 将文本字段的委托连接到您的控制器。
  3. 在控制器中实现 controlTextDidChange:
  4. 每次收到 controlTextDidChange: 时,启动一个计时器(并使旧计时器失效)。

这是一个例子:

- (void)controlTextDidChange:(NSNotification *)notification
{
   if (timeoutTimer != nil) {
      [timeoutTimer invalidate];
      [timeoutTimer release];
      timeoutTimer = nil;
   }

   timeoutTimer = [[NSTimer 
      scheduledTimerWithTimeInterval:5.0
      target:self
      selector:@selector(doSomething)
      userInfo:nil
      repeats:NO] retain];
}
  1. Make sure your text field’s continuous option is turned on.
  2. Connect the text field’s delegate to your controller.
  3. Implement controlTextDidChange: in your controller.
  4. Start a timer (and invalidate the old one) each time you receive controlTextDidChange:.

Here’s an example:

- (void)controlTextDidChange:(NSNotification *)notification
{
   if (timeoutTimer != nil) {
      [timeoutTimer invalidate];
      [timeoutTimer release];
      timeoutTimer = nil;
   }

   timeoutTimer = [[NSTimer 
      scheduledTimerWithTimeInterval:5.0
      target:self
      selector:@selector(doSomething)
      userInfo:nil
      repeats:NO] retain];
}
勿忘心安 2024-11-15 17:43:34

使用 -performSelector:withObject:afterDelay:,并在用户再次开始输入时取消执行请求。这是一个粗略的例子:

- ( void )controlTextDidChange: (NSNotification *)notification
{
    if ( [ notification object ] != myTextField ) {
        return;
    }

    [ NSObject cancelPreviousPerformRequestsWithTarget: self
               selector: @selector( userStoppedEditing: )
               object: myTextField ];
    [ self performSelector: @selector( userStoppedEditing: )
           withObject: myTextField
           afterDelay: 5.0 ];
}

Use -performSelector:withObject:afterDelay:, and cancel the perform request if the user begins typing again. Here's a crude example:

- ( void )controlTextDidChange: (NSNotification *)notification
{
    if ( [ notification object ] != myTextField ) {
        return;
    }

    [ NSObject cancelPreviousPerformRequestsWithTarget: self
               selector: @selector( userStoppedEditing: )
               object: myTextField ];
    [ self performSelector: @selector( userStoppedEditing: )
           withObject: myTextField
           afterDelay: 5.0 ];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文