Looking to open a link via UIApplication.shared.open in Swift4, Xcode9, I'm trying to use a completion block as is standard now, the most common stackoverflow answer is:
UIApplication.shared.open(url, options: [:],
completionHandler: {
(success) in
print("returned")
})