EEYatHo 앱 깎는 이야기

Swift ) 내 앱 설정화면으로 이동하기 - EEYatHo iOS 본문

iOS, Swift/Tip, Bug, Swift Error

Swift ) 내 앱 설정화면으로 이동하기 - EEYatHo iOS

EEYatHo 2021. 2. 26. 20:37
반응형

설정 화면으로 이동할 수 있는 URL


애플에서 설정창으로 이동할 수 있는 URL을 String으로 지원해준다.

UIApplication.openSettingURLString 이다.

해당 URL을 open하면 앱의 설정화면으로 이동한다.

 

관련 애플 문서




Open하는 예시 코드


guard let url = URL(string: UIApplication.openSettingsURLString) else { return }

if UIApplication.shared.canOpenURL(url) {
    UIApplication.shared.opne(url)
}

 

Comments