<!--
{
  "availability" : [
    "iOS: 13.0.0 -",
    "macCatalyst: 13.1.0 -",
    "macOS: -"
  ],
  "documentType" : "symbol",
  "framework" : "AppKit",
  "identifier" : "/documentation/AppKit/NSToolbar/didRemoveItemNotification",
  "metadataVersion" : "0.1.0",
  "role" : "Type Property",
  "symbol" : {
    "kind" : "Type Property",
    "modules" : [
      "AppKit"
    ],
    "preciseIdentifier" : "c:@NSToolbarDidRemoveItemNotification"
  },
  "title" : "didRemoveItemNotification"
}
-->

# didRemoveItemNotification

Posted after an item is removed from a toolbar.

```
class let didRemoveItemNotification: NSNotification.Name
```

## Discussion

The notification item is the `NSToolbar` object that removed the item. The `userInfo` dictionary contains the following information:

|Key                                                                         |Value                                       |
|----------------------------------------------------------------------------|--------------------------------------------|
|``doc://com.apple.appkit/documentation/AppKit/NSToolbarUserInfoKey/itemKey``|The `NSToolbarItem` object that was removed.|

## See Also

[`toolbarDidRemoveItem(_:)`](/documentation/AppKit/NSToolbarDelegate/toolbarDidRemoveItem(_:))

Tells the delegate that the toolbar removed the specified item.

To observe this notification using Swift concurrency, use [`NSToolbar.DidRemoveItemMessage`](/documentation/AppKit/NSToolbar/DidRemoveItemMessage).

---

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)