I want to open Push Notification Settings
from my app. Is it possible in iOS? I know I can open Settings
screen only.
Asked
Active
Viewed 2,073 times
1

Md. Sulayman
- 781
- 8
- 30
4 Answers
1
Since iOS 15.4 we can deeplink to the notif settings screen directly: https://developer.apple.com/documentation/uikit/uiapplicationopennotificationsettingsurlstring?language=objc

Simon Reggiani
- 550
- 10
- 18
0
There is no official way to so do. You can navigate directly to the Notification Setting page but doing so can cause your app to be rejected.

congnd
- 1,168
- 8
- 13
-
any official documentation reference?? I wanted to read it if possible – Md. Sulayman Aug 10 '20 at 05:52
0
You can open app setting from your app. Refer this apple doc
https://developer.apple.com/documentation/uikit/uiapplication/1623042-opensettingsurlstring

Ghufran
- 16
- 3
0
On iOS 16 you should be able to do this
if let url = URL(string: UIApplication.openNotificationSettingsURLString) {
// Ask the system to open that URL.
await UIApplication.shared.open(url)
}

sergeyski.com
- 586
- 6
- 14