투케이2K

39. (ios/swift) 애플리케이션 설정 창 이동 실시 - 권한 거부 시 수행 본문

IOS

39. (ios/swift) 애플리케이션 설정 창 이동 실시 - 권한 거부 시 수행

투케이2K 2021. 10. 31. 16:01

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : SWIFT


[소스 코드]

    // MARK: - [애플리케이션 설정창 이동 실시 : 권한 거부 시]
    func goAppSetting() {
        if let url = URL(string: UIApplication.openSettingsURLString) {
            print("")
            print("===============================")
            print("[A_Main >> goAppSetting() : 앱 설정 화면 이동 수행]")
            print("===============================")
            print("")
            UIApplication.shared.open(url, options: [:], completionHandler: nil)
        }
        else {
            print("")
            print("===============================")
            print("[A_Main >> goAppSetting() : 앱 설정 화면 이동 실패]")
            print("===============================")
            print("")
        }
    }

 

반응형
Comments