Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deep link in to iOS Settings' Notifications page?

I know that I can deep link into the Settings page on iOS via UIApplicationOpenSettingsURLString. However, this takes me to a page such as this:

enter image description here

Now if I want the user to enable notifications, they have to find Notifications in the list and then enable it. Is there a way to instead directly link them to the Notifications page? (i.e. Going to the same exact page as though they had tapped notifications in the screenshot above.)

If not, is there a way to take them to the global notifications iOS Settings page? (See screenshot below for an example)

enter image description here

like image 652
Senseful Avatar asked Oct 07 '15 23:10

Senseful


1 Answers

No, there is no way to go to any other page in the Settings app from a third party app. Using UIApplicationOpenSettingsURLString is the only option available.

like image 151
rmaddy Avatar answered Oct 22 '22 17:10

rmaddy