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
- swiftUI
- swift documentation
- 리팩토링
- clean architecture
- MVVM
- Human interface guide
- collectionview
- RxCocoa
- Xcode
- 리펙터링
- Clean Code
- 클린 코드
- map
- uiscrollview
- SWIFT
- ios
- HIG
- rxswift
- 애니메이션
- ribs
- Protocol
- combine
- tableView
- Observable
- uitableview
- 스위프트
- UITextView
- Refactoring
- UICollectionView
- 리펙토링
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] URL, URI 파싱, path, query string (URLComponents, URITemplate 프레임워크) 본문
iOS 응용 (swift)
[iOS - swift] URL, URI 파싱, path, query string (URLComponents, URITemplate 프레임워크)
jake-kim 2021. 1. 25. 23:25URL에 parameter 삽입 (query string)
- "https://domainABC" 를 "https://domainABC?memberID=1234"로 변경
let url = "https://domainABC"
var components = URLComponents(string: url)
let id = URLQueryItem(name: "memberID", value: "1234")
components?.queryItems = [id]
guard let newURL = components?.url else {
return
}
print(newURL) // Optional(https://domainABC?memberID=1234)
URL의 parameter 파싱 (query string)
- "https://domainABC?memberID=1234"를 memberID 데이터만 획득
let url = "https://domainABC?memberID=1234"
let components = URLComponents(string: url)
let items = components?.queryItems ?? []
for item in items {
print("\(item.name), \(item.value)") // memberID, Optional("1234")
}
URL의 path에 "{}" 형식으로 내려오는 url 파싱
- "https://domainABC/{id}/{scope}"를 id, scope값에 각각 값을 채워서 삽입
let url = "https://domainABC/{id}/{scope}/"
let template = URITemplate(template: url)
let newURL = template.expand(["id": "123", "scope": "inHouse"])
print(newURL) // https://domainABC/123/inHouse/
print(template.variables) // ["id", "scope"]
'iOS 응용 (swift)' 카테고리의 다른 글
[iOS - swift] 문자열 파일 저장하기 (userDomainMask, documentDirectory) (0) | 2021.02.02 |
---|---|
[iOS - swift] AVFoundation, Camera 다루는 방법 (3) | 2021.01.26 |
[iOS - swift] Lottie 프레임워크 (애니메이션) (0) | 2021.01.24 |
[iOS - swift] Hero 프레임워크 (화면전환 애니메이션) (0) | 2021.01.24 |
[iOS - swift] Transition, Animator objects, Interactive animator objects (0) | 2021.01.24 |
Comments