적당한 고통은 희열이다

- 댄 브라운 '다빈치 코드' 중에서

Swift iOS 앱 개발/Swift

[Swift iOS] UIComponents

hongssup_ 2021. 11. 8. 10:14
반응형

다음과 같이 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에서 정보를 가져오고 싶다면 다음과 같이 받아올 수 있다. 

 

 

 

참고 : ZeddiOS - URLComponents

 

728x90
반응형