반응형
다음과 같이 URL을 생성해줄 수 있다.
var components = URLComponents(string: "https://hongssup.tistory.com")
let type = URLQueryItem(name: "type", value: "post")
let page = URLQueryItem(name: "page", value: "22")
components?.queryItems = [clientID, scope]
components?.url //https://hongssup.tistory.com/?type=post&page=22
반대로 URL에서 정보를 가져오고 싶다면 다음과 같이 받아올 수 있다.
728x90
반응형
'Swift iOS 앱 개발 > Swift' 카테고리의 다른 글
[Swift iOS] detect UITableView scroll to bottom (0) | 2021.12.08 |
---|---|
[Swift iOS] keyboard top toolbar 추가하기 (0) | 2021.11.11 |
[Swift iOS] UICollectionView scroll to top / bottom (0) | 2021.10.13 |
[Swift iOS] CLLocationManager 위치정보 GPS 주소 가져오기 (0) | 2021.10.06 |
[Swift iOS] WKNavigationDelegate 하이브리드 앱에서 webview 탐색 및 관리 (0) | 2021.10.05 |