从 Objective C 和 xcode 中的 NSTextField 获取值
如何连续从 NSTextField 获取数据并在后台执行此操作?我这样做是因为我正在使用石英作曲家插件来获取 NSTextField 中发布的值。这是在同一个应用程序内。
有什么想法吗?
以利亚
How can I continuously get data from an NSTextField and do this in the background? I'm doing this because I'm using a quartz composer plugin to get posted values in an NSTextField. This is within the same app.
Any ideas??
Elijah
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定“连续”是什么意思,但是
controlTextDidChange:
委托方法会告诉您文本何时更改。I'm not sure what you mean by "continuously", but the
controlTextDidChange:
delegate method will tell you when the text changes.