I know the question is kinda confusing, but let me explain...
I want to be able to get the Menu Item Titles of all running applications, not just the main application. I know how to get the main application menu items by using the code below:
NSMenu *mainMenu = [[NSApplication sharedApplication] mainMenu];
for (NSMenuItem *item in [mainMenu itemArray]){
NSLog(@"%@", [item title]);
}
And I also know how to get a list of all running applications using the code below:
[[NSWorkspace sharedWorkspace] runningApplications]
Now I want to be able to be able to get the mainMenu of a certain application in the sharedWorkspace.
Is this possible.. If so, please share :) Thanks!