URLComonents1 URLComponents URLComponents를 사용하면 간편하게 URL 요소들을 다룰 수 있습니다. 물론 URLComponents를 사용하지 않고도 아래처럼 URL을 만들 수는 있습니다. private func buildURL(post: String, id: String) -> URL? { return URL(string: "https://ittingz.tistory.com/?post=\(post)&id=\(id)") } 하지만 query item의 종류가 많아질 수록 일일이 string interpolator 형태로 작성하기도 번거롭고 오타가 나면 발견하기 어려울 수 있습니다. URLComponents를 사용하면 어떻게 될 지 한 번 볼까요? private func useURLComponents(post: String, .. 2022. 11. 11. 이전 1 다음 반응형