Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用响应者链 (sendAction:to:from:) 从子视图到文档进行通信。问题是当窗口最小化时,如果仍然有任何动作发生,它们就会失败,因为响应者链被破坏了。我不能使窗口成为关键窗口,因为它已最小化。有任何想法吗?
我刚刚发现如何使用 NSResponder 做到这一点:
- (BOOL)tryToPerform:(SEL)anAction with:(id)anObject
如果接收方响应 anAction,它会调用以 anObject 作为参数的方法并返回 YES。如果接收者没有响应,它会将此消息发送给具有相同选择器和对象的下一个响应者。