---
title: isFinishedLaunching
framework: appkit
role: symbol
role_heading: Instance Property
path: appkit/nsrunningapplication/isfinishedlaunching
---

# isFinishedLaunching

A Boolean value that determines whether the receiver’s process has finished launching.

## Declaration

```swift
var isFinishedLaunching: Bool { get }
```

## Discussion

Discussion The value of this property corresponds to the running application having received an didFinishLaunchingNotification notification internally. Some applications do not post this notification (applications that do not rely on NSApplication) and so are never reported as finished launching. This property is observable using key-value observing.

## See Also

### Application information

- [localizedName](appkit/nsrunningapplication/localizedname.md)
- [icon](appkit/nsrunningapplication/icon.md)
- [bundleIdentifier](appkit/nsrunningapplication/bundleidentifier.md)
- [bundleURL](appkit/nsrunningapplication/bundleurl.md)
- [executableArchitecture](appkit/nsrunningapplication/executablearchitecture.md)
- [executableURL](appkit/nsrunningapplication/executableurl.md)
- [launchDate](appkit/nsrunningapplication/launchdate.md)
- [processIdentifier](appkit/nsrunningapplication/processidentifier.md)
- [ownsMenuBar](appkit/nsrunningapplication/ownsmenubar.md)
