selectItem(withTag:)
Selects the menu item with the specified tag.
Declaration
func selectItem(withTag tag: Int) -> BoolParameters
- tag:
The tag of the item you want to select.
Return Value
true if the item was successfully selected; otherwise, false.
Discussion
If no item with the specified tag is found, this method returns false and leaves the menu state unchanged.
You typically assign tags to menu items from Interface Builder, but you can also assign them programmatically using the setTag: method of NSMenuItem.