向 NSTextField 添加点击操作

发布于 2024-10-30 19:00:20 字数 44 浏览 1 评论 0原文

当我点击 NSTextField 时,如何将事件附加到它?有没有什么例子?

How do I attach a event to a NSTextField for when I click on it? Are there any examples out there?

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

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

发布评论

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

评论(3

审判长 2024-11-06 19:00:20
NSClickGestureRecognizer *click = [[NSClickGestureRecognizer alloc] initWithTarget:self action:@selector(myTextFieldClicked:)];
[self.myTextField addGestureRecognizer:click];
NSClickGestureRecognizer *click = [[NSClickGestureRecognizer alloc] initWithTarget:self action:@selector(myTextFieldClicked:)];
[self.myTextField addGestureRecognizer:click];
以为你会在 2024-11-06 19:00:20

你可以试试这个:它对我有用。

    @interface customTextField : NSTextField
    @property (strong) id target;
    @end

    @implementation customTextField

    - (void)mouseDown:(NSEvent *)theEvent
    {
        [self sendAction:@selector(clickAction:) to:[self target]];
    }

    @end

谢谢。

You can try this: It works for me.

    @interface customTextField : NSTextField
    @property (strong) id target;
    @end

    @implementation customTextField

    - (void)mouseDown:(NSEvent *)theEvent
    {
        [self sendAction:@selector(clickAction:) to:[self target]];
    }

    @end

Thanks.

昇り龍 2024-11-06 19:00:20

您正在寻找的方法是 - textShouldBeginEditing:

首先,您必须设置 NSTextField 的委托。

The method you are looking for is - textShouldBeginEditing:

You have to set the delegate of the NSTextField, first of all.

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