LoginSignup
6
7

More than 3 years have passed since last update.

【Swift5】OSの設定アプリに遷移する処理

Last updated at Posted at 2019-09-10

設定アプリ内の当該アプリの設定画面に遷移する方法

    func showOSSettingView() {
        if let url = URL(string: UIApplicationOpenSettingsURLString) {
            UIApplication.shared.open(url, options: [:], completionHandler: nil)
        }
    }

ちなみに、設定アプリのトップに遷移する方法はないらしい、、、
明確な情報知っている方いれば教えて下さい。

6
7
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
7