按键时从 NSTextField 发送操作而不是返回
我想显示解除按键后新推文剩余的字符数。目前,只有在取消 return 时才会发生这种情况:
- (IBAction)updateCharacterCountFromNewTweetField:(id)sender {
[newTweetCharacterCount setIntValue:140 - [[sender stringValue] length]];
}
此操作连接到 NSTextField (不是 UITextField!!):
这对用户来说很糟糕,因为他们希望立即看到字符数,而不是在按回车键后才看到。
有人可以帮我吗?谢谢。
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!!):
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在文本字段上设置委托并让它实现 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.