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
- HIG
- UICollectionView
- Observable
- 애니메이션
- rxswift
- RxCocoa
- Refactoring
- Human interface guide
- collectionview
- Xcode
- map
- swiftUI
- tableView
- Clean Code
- 리펙토링
- combine
- ios
- uitableview
- Protocol
- 스위프트
- ribs
- MVVM
- swift documentation
- SWIFT
- 리팩토링
- clean architecture
- 클린 코드
- UITextView
- 리펙터링
- uiscrollview
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