<!--
{
  "availability" : [
    "macOS: 10.10.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "AppKit",
  "identifier" : "/documentation/AppKit/NSApplicationDelegate/applicationWillTerminate(_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "AppKit"
    ],
    "preciseIdentifier" : "c:objc(pl)NSApplicationDelegate(im)applicationWillTerminate:"
  },
  "title" : "applicationWillTerminate(_:)"
}
-->

# applicationWillTerminate(_:)

Tells the delegate that the app is about to terminate.

```
@MainActor optional func applicationWillTerminate(_ notification: Notification)
```

## Parameters

`notification`

A notification named [`willTerminateNotification`](/documentation/AppKit/NSApplication/willTerminateNotification). Calling the <doc://com.apple.documentation/documentation/Foundation/NSNotification/object> method of this notification returns the `NSApplication` object itself.

## Discussion

Your delegate can use this method to perform any final cleanup before the app terminates.  The app will terminate after this method returns.

> Note: This method isn’t called during sudden termination of an app. For more information about sudden termination, see the section  <doc://com.apple.documentation/documentation/Foundation/ProcessInfo> of <doc://com.apple.documentation/documentation/Foundation/ProcessInfo>.

## See Also

[`terminate(_:)`](/documentation/AppKit/NSApplication/terminate(_:))

Terminates the receiver.



---

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)