iOS, send user to settings screen

Hi,
I’d like to know if there is a way to know if the user has accepted the notification from our app.

If no, i want to create a button which send on the iPhone/iPad settings of our app with the Toggle to turn on/off notification. I saw some app like Uber doing it (you can’t do anything on the app if you didn’t turn on notifications).

Thanks,

Leo

This is how I send players to Settings.

        NSURL* url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
        [[UIApplication sharedApplication] openURL:url];