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
- UITextView
- RxCocoa
- tableView
- swiftUI
- Xcode
- map
- swift documentation
- ribs
- 리팩토링
- MVVM
- HIG
- 애니메이션
- rxswift
- uitableview
- Observable
- Protocol
- UICollectionView
- SWIFT
- combine
- uiscrollview
- Human interface guide
- collectionview
- 리펙토링
- Clean Code
- 클린 코드
- Refactoring
- 스위프트
- clean architecture
- ios
- 리펙터링
Archives
- Today
- Total
목록DeepLink 모델링 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] URL 처리 방법 (URLComponents, URLQueryItem, DeepLink 모델링)
URL과 URI 구분 URI(Uniform Resource Identifier): 특정 리소스 식별자 URL(Uniform Resource Location): 특정 리소스 위치 URI의 방법중 하나가 URL URL의 구조 scheme: 사용할 프로토콜 host: 접근할 서버의 호스트 이름 path: 접근할 서버의 경로에 대한 정보 query: 접근할 대상에 전달하는 추가적인 정보 (= 파라미터) Swift에서 URL 접근 let urlString = "https://ios-development.tistory.com/ios?page=1&item=2" guard let url = URL(string: urlString) else { return } // url의 기본 요소 접근 url.absoluteStri..
iOS 응용 (swift)
2022. 6. 21. 22:48