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 | 31 |
Tags
- MVVM
- map
- 리펙터링
- UITextView
- ios
- ribs
- rxswift
- 애니메이션
- Clean Code
- Refactoring
- SWIFT
- Xcode
- 리펙토링
- RxCocoa
- combine
- 클린 코드
- 리팩토링
- tableView
- collectionview
- HIG
- swiftUI
- Human interface guide
- 스위프트
- clean architecture
- uiscrollview
- UICollectionView
- swift documentation
- Observable
- uitableview
- Protocol
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 이메일, 핸드폰 번호 탭 -> 입력 화면으로 이동 (mailto, tel) 본문
이메일, 폰 입력 화면
- 이메일: url.scheme값이 mailto
let urlStr = "mailto:palatable7@naver.com"
guard let url = URL(string: urlStr) else {
return
}
print(url.scheme) // mailto
- 핸드폰 번호: url.scheme값이 tel
let urlStr = "tel:010-1234-1234"
guard let url = URL(string: urlStr) else {
return
}
print(url.scheme) // tel
이동 방법
- UIApplication.shared.open(:options:completionHandler:)를 사용하여 이동
let email = "mailto:palatable7@naver.com"
let phone = "tel:010-1234-1234"
- mailto
guard let url = URL(string: email) else {
return
}
if UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
- tel
guard let url = URL(string: phone) else {
return
}
if UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
'iOS 응용 (swift)' 카테고리의 다른 글
[iOS - swift] 커스텀 셀 custom cell (only code) (0) | 2021.05.02 |
---|---|
[iOS - swift] 스택 뷰 stack view (axis, alignment, distribution, hugging, comporession) (2) | 2021.05.02 |
[iOS - swift] 한글 개행, 줄바꿈, 한글 Line Break 설정 (어절단위 -> 글자단위) (0) | 2021.04.05 |
[iOS - swift] 알람 설정(push setting) 코드에서 확인 방법 (0) | 2021.04.05 |
[iOS - swift] 동적으로 tableView의 frame사이즈 변경 방법, intrinsicContentSize (0) | 2021.04.02 |
Comments