s73v3r
s73v3r

Reputation: 1751

OS X How to add items to application's top menu?

I'm trying to make an OS X app, and for some reason, I can't find anything on how to add items to the Main Menu (File, Edit, etc), and how to actually handle those actions. Everything I've found is how to implement a Status Bar application, which is not what I want. Can anyone help?

Upvotes: 1

Views: 2051

Answers (1)

user149341
user149341

Reputation:

The menu bar is part of your application's MainMenu.nib, and can be edited there. Like other user interface objects, each menu item has a target which can be configured to control what it does.

A video tutorial is available here. (I'm not usually a fan of videos, but this one is so perfectly on-target that I'm making an exception.)

Upvotes: 1

Related Questions