addMenuItem(with:title:action:)
Adds an action to the context menu using a system-provided icon.
Declaration
func addMenuItem(with itemIcon: WKMenuItemIcon, title: String, action: Selector)Parameters
- itemIcon:
The identifier of a standard system icon. This parameter must not be
nil. For a list of possible values, see Wkmenuitemicon. - title:
The title string to be displayed underneath the image. Title strings should be reasonably short. Any text that cannot be displayed is truncated. This parameter must not be
nilor an empty string. - action:
The action method to be called when the action is tapped. The method must be defined on the current interface controller object. This parameter must not be
nil.
Discussion
Use this method to append an action to the interface controller’s context menu. If the menu already has four items, additional items are ignored.