addItem(withTitle:)
Adds an item with the specified title to the end of the menu.
Declaration
func addItem(withTitle title: String)Parameters
- title:
The title of the menu-item entry. If an item with the same title already exists in the menu, the existing item is removed and the new one is added.
Discussion
If you want to move an item, it’s better to invoke removeItem(withTitle:) explicitly and then send this method. After adding the item, this method calls the synchronizeTitleAndSelectedItem() method to make sure the item being displayed matches the currently selected item.
Since this method searches for duplicate items, it should not be used if you are adding an item to an already populated menu with more than a few hundred items. Add items directly to the receiver’s menu instead.