Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created January 21, 2019 07:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fitomad/5a5e10a9168e2a7436ab83dc49fb69d6 to your computer and use it in GitHub Desktop.
Save fitomad/5a5e10a9168e2a7436ab83dc49fb69d6 to your computer and use it in GitHub Desktop.
if let desappstreURL = URL(string: "http://desappstre.com/sitemap.xml")
{
// En Swift 4 el tipo de webContents sería String??
// En Swift 5 se *aplana* y webContents sería String?
let webContents = try? String(contentsOf: desappstreURL)
print("Contenido de desappstre.com\r\n \(webContents)")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment