In my Cocoa app I have two NIB/XIB files that I need to connect:

  1. MainMenu.xib: contains a custom object for the NSApplication delegate object and connects it to the proper outlet in the NSApplication placeholder.

  2. ContextMenu.xib: sets up an NSMenu; one entry is supposed to open the preferences dialog

My custom app delegate defines an IBAction to bring up the Preferences window for my app.

How can I connect the NSMenuItem (second NIB) for showing the preferences to the action defined in the application delegate (first NIB)?

The Docs say this is supposed to be easy, but they fail to mention how exactly to do this in Interface Builder:

If the menu item refers to an application-level command, you can implement that command directly in the application delegate or just have the delegate forward the message to the appropriate object elsewhere in your application.

I somehow need to access the app delegate in the second NIB, tell Interface Builder that it is of my custom class (so it knows about the custom IBAction), and connect it to the action of the menu item.

Thanks for any pointers!

link|improve this question

Found somewhat of a solution with the detour of an action in the File's owner that then calls out to the app delegate. Is there a way to avoid this? iphonedevsdk.com/forum/iphone-sdk-development/… – Mark Sep 13 '11 at 7:24
feedback

2 Answers

up vote 2 down vote accepted

If the other objects are in the responder chain, then you can just hook the action up to the first responder.

Notice the if, though.

Edit:

Based on comment by Maurice Kelly:

Your App Delegate should be part of the Responder Chain. Define a custom action on the First Responder (in Interface Builder) and a corresponding action on your App Delegate.

link|improve this answer
feedback

Your second NIB will have a File's Owner which you should set to a class that is instantiated by your application. Within this class you can create a reference to the App Delegate which can be filled in when the class is being instantiated (e.g. using setAppDelegate:self if you are creating it from within the delegate).

Create an IBAction in this class which simply passes the action on to the App Delegate:

- (IBAction) passItOnAction:(id)sender {
    [appDelegate openPreferences:sender];
}
link|improve this answer
Oops - just saw your edit. I'm not sure if there is an alternative to the File's Owner action detour. The File's owner is a proxy object by which your NIB can communicate with objects created outside of it's little world. – Maurice Kelly Sep 13 '11 at 8:21
I was hoping to avoid the detour/passItOn style (that's what I have at the moment). Is there a way to add the app delegate as a proxy object or sorts? – Mark Sep 13 '11 at 9:23
Hmmm, I don't think you can add more proxy objects. However, I guess you could make the App Delegate the File's Owner for your second NIB. I'm not sure what the repercussions of that would be. – Maurice Kelly Sep 13 '11 at 9:49
I don't have the reputation to comment above, but @Monolo's answer seems pretty good. Your App Delegate should be part of the Responder Chain and so defining a custom action on the First Responder and a corresponding action on your App Delegate should work. I've tried it on a sample project (non Document-based) and it worked for me. – Maurice Kelly Sep 13 '11 at 10:31
Ok, I added more details based on your comment to Monolo's answer. Thanks! – Mark Sep 13 '11 at 12:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.