替换现有 NSView 的 NSResponder

发布于 2024-10-17 11:47:23 字数 108 浏览 6 评论 0原文

我在绘图应用程序中有一个视图,当选择其他工具时,它需要以其他方式响应。我认为替换该视图的 NSResonder 会比设置视图的每个响应者方法调用新的响应者方法要好得多。这可能吗,还有其他好的解决方案吗?

I have a view in an drawing application, it needs to respond in an other way when an other tool is selected. I thought it would be much nicer to replace the NSResonder of that view in stead of setting every responder method of the view call the new responder method. Is this possible, of is there an other nice solution?

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

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

发布评论

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

评论(1

秋千易 2024-10-24 11:47:23

每个 NSView 对象并不“拥有”一个 NSResponderNSResponderNSView 继承的*超类,所以不,它不能更改。最简单的解决方案就是保留一个 ivar 来跟踪当前选择的工具,然后使用该 ivar 来确定在 NSResponder 方法中采取什么操作(-mouseDown: , ETC。)。

Each NSView object does not "have" an NSResponder. NSResponder is the *superclass from which NSView inherits, so no, it can not be changed. The easiest solution would be just to keep an ivar that tracks which tool is currently selected, then use that ivar to determine what action to take in the NSResponder methods (-mouseDown:, etc.).

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