向 NSTextField 添加点击操作
当我点击 NSTextField 时,如何将事件附加到它?有没有什么例子?
How do I attach a event to a NSTextField for when I click on it? Are there any examples out there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以试试这个:它对我有用。
谢谢。
You can try this: It works for me.
Thanks.
您正在寻找的方法是 - textShouldBeginEditing:
首先,您必须设置 NSTextField 的委托。
The method you are looking for is - textShouldBeginEditing:
You have to set the delegate of the NSTextField, first of all.