Notice
Recent Posts
Recent Comments
Link
투케이2K
39. (ios/swift) 애플리케이션 설정 창 이동 실시 - 권한 거부 시 수행 본문
[개발 환경 설정]
개발 툴 : 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("")
}
}
반응형
'IOS' 카테고리의 다른 글
41. (ios/swift) 로딩 프로그레스 만들기 - UIAlertController , UIProgressView (2) | 2021.11.01 |
---|---|
40. (ios/swift) toast 토스트 메시지 표시 수행 실시 (0) | 2021.10.31 |
38. (ios/swift) 로딩 화면 연장 및 로직 처리 방법 - LaunchScreen, ViewController (0) | 2021.10.31 |
37. (ios/swift) LaunchScreen 로딩 화면 이미지 전체 화면 만들기 방법 (0) | 2021.10.31 |
36. (ios/swift) 모바일 디바이스 기기 해상도 확인 실시 - UIScreen main bounds size width height (0) | 2021.10.30 |
Comments