gpt4 book ai didi

objective-c - 如何从 NSResponder 显式发送键值观​​察通知?

转载 作者:行者123 更新时间:2023-12-03 17:09:49 26 4
gpt4 key购买 nike

我正在尝试在 SDL 应用程序中创建 NSTouchBar,并且需要将响应程序附加到 NSWindow 对象(这是 SDL 提供给 Cocoa 窗口系统的唯一访问权限)。

https://developer.apple.com/reference/appkit/nstouchbar

If you explicitly adopt the NSTouchBarProvider protocol in an object, you must also explicitly send the associated key-value observing notifications within NSTouchBar methods; this lets the system respond appropriately to changes in the bar.

这是什么意思以及我该如何做?我看到很多有关如何订阅通知的文档,但没有看到如何发送通知?

现在我有:

@interface MyTouchBarResponder : NSResponder <NSTouchBarDelegate>

- (id)init;
- (NSTouchBar *)makeTouchBar;
- (nullable NSTouchBarItem *)touchBar:(NSTouchBar *)touchBar makeItemForIdentifier:(NSTouchBarItemIdentifier)identifier;
@property(strong, readonly) NSTouchBar *touchBar;

@end

我用我在这里问的上一个问题的代码将它附加到窗口:How to create an NSTouchBar from an NSWindow object?

touchBarResponder.nextResponder = window.nextResponder;
window.nextResponder = touchBarResponder;

但我的回调从未被调用(我将 exit(0) 放入其中以使其非常明显)。当我将代码直接侵入 SDL 库时,一切都会按预期工作,但这不是一个可行的永久解决方案。

谢谢。

最佳答案

首先,您的自定义响应程序应符合 NSTouchBarProvider (在上面,您声明了 touchBar 属性,但没有显式符合)

其次,您要确保您的自定义响应程序位于窗口的响应程序链中(无论是第一个响应程序还是链中的后一个响应程序)。使用上述代码调整响应者链后,您需要调用 -makeFirstResponder: 并传入窗口中的某个 View (如果您需要该 View 作为第一响应者)或使用自定义响应者对象。然后,您应该验证窗口的 firstResponder 是否是该对象。

有了这些,在窗口显示并成为关键之后,您应该至少调用一次 touchBar

要回答有关键值观察通知的问题,当您想要更改从 touchBar 返回的实际 NSTouchBar 对象时需要这样做。在一般情况下,这是不必要的,因为在静态触摸栏情况下是不必要的,即使在动态情况下,您也可以依靠在之前创建的触摸栏上设置 defaultItemIdentifiers 来实现将会更新。但是,如果您需要更改触摸栏对象,则需要确保在以下情况下为 touchBar 发送 -willChangeValueForKey:-didChangeValueForKey::你改变了返回值。 This developer documentation on KVO更详细。

关于objective-c - 如何从 NSResponder 显式发送键值观​​察通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40701412/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com