I have a .webarchive that I want to open on Safari from an iOS app by using this
if let url = Bundle.main.url(forResource: "about", withExtension: "webarchive") {
UIApplication.shared.open(url)
}
This works for URL non the web but not for webarchive?
Any ideas?