Returns the index of the menu item that holds the specified represented object.
SDK
- macOS 10.0+
Framework
- App
Kit
Declaration
func indexOfItem(withRepresentedObject obj: Any?) -> Int
Parameters
anObject
The represented object associated with a menu item.
Return Value
The index of the menu item that owns the specified object, or -1
if no such menu item was found.
Discussion
Represented objects bear some direct relation to the title or image of a menu item; for example, an item entitled “100” might have an NSNumber
object encapsulating that value as its represented object. This method invokes the method of the same name of its NSPop
object.