Skip to content

Instantly share code, notes, and snippets.

@Enchan1207
Created March 26, 2021 10:50
Show Gist options
  • Save Enchan1207/685378d3060becc94e7a4db712b0931e to your computer and use it in GitHub Desktop.
Save Enchan1207/685378d3060becc94e7a4db712b0931e to your computer and use it in GitHub Desktop.
SPM executableでURLSessionDataTask
// webサイトから持ってきてパース
let task = URLSession.shared.dataTask(with: URL(string: "https://example.com")!) { (data, response, error) in
print(response)
semaphore.signal()
}
task.resume()
semaphore.wait()
exit(EXIT_SUCCESS)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment