按键时从 NSTextField 发送操作而不是返回

发布于 2024-09-28 10:28:10 字数 408 浏览 2 评论 0原文

我想显示解除按键后新推文剩余的字符数。目前,只有在取消 return 时才会发生这种情况:

- (IBAction)updateCharacterCountFromNewTweetField:(id)sender {
  [newTweetCharacterCount setIntValue:140 - [[sender stringValue] length]];
}

此操作连接到 NSTextField (不是 UITextField!!): alt text

这对用户来说很糟糕,因为他们希望立即看到字符数,而不是在按回车键后才看到。

有人可以帮我吗?谢谢。

I want to show the number of characters left for a new tweet, after a key has been lifted. Currently, this only happens if return is lifted:

- (IBAction)updateCharacterCountFromNewTweetField:(id)sender {
  [newTweetCharacterCount setIntValue:140 - [[sender stringValue] length]];
}

This action is connected to an NSTextField (NOT A UITextField!!):
alt text

This is terrible for users, because they want to see the character count immediately, not just after pressing return.

Can anyone help me out? Thanks.

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

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

发布评论

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

评论(1

场罚期间 2024-10-05 10:28:10

在文本字段上设置委托并让它实现 controlTextDidChange: 委托方法。

另请参阅文本编辑编程指南:代理消息和通知

Set a delegate on the textfield and have it implement the controlTextDidChange: delegate method.

See also Text Editing Programming Guide: Delegate Messages and Notifications.

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