Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
Tags
- SwiftUI
- github
- Code
- mac
- Apple
- 맥
- Swift
- geofencing
- iOS16
- window
- Git
- MacOS
- error
- UIButton
- 개발자
- 이미지
- JPA
- 한글
- FLUTTER
- Session
- IOS
- Xcode
- appstore
- rxswift
- darkmode
- Realm
- Firebase
- 웹뷰
- shorebird
- Archive
Archives
- Today
- Total
목록openSettingURLString (1)
EEYatHo 앱 깎는 이야기
Swift ) 내 앱 설정화면으로 이동하기 - EEYatHo iOS
설정 화면으로 이동할 수 있는 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) }
iOS, Swift/Tip, Bug, Swift Error
2021. 2. 26. 20:37