Hi,
Inside an object I use NSMenu's addItemWithTitle:action:keyEquivalent:
to create NSMenuItems. The problem is that I wish to call a method on another object as action. The action:
part takes an @selector
as parameter and I don't know how to use this to call methods on other objects. I could create a method inside the object creating the NSMenu and then from that object I could call the method I would like to call on another object.. But then I don't know any good naming convention for that.