---
title: openNotificationSettingsURLString
framework: uikit
role: symbol
role_heading: Type Property
path: uikit/uiapplication/opennotificationsettingsurlstring
---

# openNotificationSettingsURLString

The URL string you use to deep link to your app’s notification settings in the Settings app.

## Declaration

```swift
nonisolated static let openNotificationSettingsURLString: String
```

## Discussion

Discussion Create a URL from this value and pass it to the open(_:options:completionHandler:) method to launch the Settings app and display your app’s notification settings, if it has any. // Create the URL that deep links to your app's notification settings. if let url = URL(string: UIApplication.openNotificationSettingsURLString) {     // Ask the system to open that URL.     await UIApplication.shared.open(url) }

## See Also

### Deep linking to custom settings

- [openSettingsURLString](uikit/uiapplication/opensettingsurlstring.md)
- [UIApplicationOpenNotificationSettingsURLString](uikit/uiapplicationopennotificationsettingsurlstring.md)
- [openDefaultApplicationsSettingsURLString](uikit/uiapplication/opendefaultapplicationssettingsurlstring.md)
