开发者

Transmit NSMenu commands to the current window?

开发者 https://www.devze.com 2023-03-23 07:26 出处:网络
Newbie OS X developer here, although fairly experienced with iOS. I am missing something basic about the way the top-level NSMenu interacts with the application.I want the File->Save command to go to

Newbie OS X developer here, although fairly experienced with iOS.

I am missing something basic about the way the top-level NSMenu interacts with the application. I want the File->Save command to go to the current window. So far I have only been able to receive NSMenu actions in the app delegate. Am I supposed to keep track of the active window开发者_如何学JAVA there and invoke methods from the app delegate?


Firstly, it sounds like you need to read up on Mac menu handling, because there are a lot of things you need to know about in order to deal with menus correctly.

To answer your specific question, if a menu item has a target of nil, such as the Save menu item, then the menu handling system walks up the responder chain, starting from the currently active control or view (first responder), looking for an object that implements the action selector for that menu item.

If you don't understand how the responder chain works, you should read about that too, because it's fundamental to understanding how Mac apps work.

If you want your window controller to handle the ‑save: action when its window is the main window, then all you need to do is implement the ‑save: action in your window controller. Because the window controller is in the responder chain before the application delegate, its implementation of the method will be used.

0

精彩评论

暂无评论...
验证码 换一张
取 消