<!--
{
  "availability" : [
    "watchOS: 2.0.0 - 7.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "WatchKit",
  "identifier" : "/documentation/WatchKit/WKInterfaceController/addMenuItem(withImageNamed:title:action:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "WatchKit"
    ],
    "preciseIdentifier" : "c:objc(cs)WKInterfaceController(im)addMenuItemWithImageNamed:title:action:"
  },
  "title" : "addMenuItem(withImageNamed:title:action:)"
}
-->

# addMenuItem(withImageNamed:title:action:)

Adds an action to the context menu using an existing image resource in your Watch app bundle.

```
func addMenuItem(withImageNamed imageName: String, title: String, action: Selector)
```

## Parameters

`imageName`

The name of the image to be loaded from your Watch app’s bundle. Include the filename extension in the name. This parameter must not be `nil`.

`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 `nil` or 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.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)