NSTextView 委托不起作用?

发布于 2024-10-14 12:19:47 字数 359 浏览 2 评论 0原文

我有一个 NSTextView,我将委托交给我的文件所有者。然后,我的文件所有者与一个类相关联,我在该类中在视图中执行不同的操作。

据我了解,现在应该可以从我的类中的 NSTextView 捕获事件(因为我已将其委托设置为文件所有者),但它似乎不起作用,为什么呢?

我在我的班级中实现了这个功能:

- (BOOL)control: (NSControl *)control textView:(NSTextView *)textView doCommandBySelector: (SEL)commandSelector {

    NSLog(@"i was fired!");

    return YES;
}

I have a NSTextView where i put the delegate to my file owner. My file owner is then assosiated with a class where i do different stuff in the view.

To my understanding it should now be possible to catch events from the NSTextView inside my class (because i have set its delegate to file owner), but it does not seem to work, why is that?

I have implemented this function in my class:

- (BOOL)control: (NSControl *)control textView:(NSTextView *)textView doCommandBySelector: (SEL)commandSelector {

    NSLog(@"i was fired!");

    return YES;
}

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

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

发布评论

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

评论(2

-残月青衣踏尘吟 2024-10-21 12:19:47

根据 http://developer.apple.com/library/mac/#documentation/cocoa/Reference/NSTextViewDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intf/NSTextViewDelegate

方法签名如下所示:

- (BOOL)textView:(NSTextView *)aTextView doCommandBySelector:(SEL)aSelector

尝试一下吧。

according to http://developer.apple.com/library/mac/#documentation/cocoa/Reference/NSTextViewDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intf/NSTextViewDelegate

the method signature looks like:

- (BOOL)textView:(NSTextView *)aTextView doCommandBySelector:(SEL)aSelector

give that a try instead.

七度光 2024-10-21 12:19:47

选择器只是textView:doCommandBySelector:;放下控件

The selector is just textView:doCommandBySelector:; drop the control.

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