Created
June 19, 2023 15:45
-
-
Save Bahallack/1ccb92d4a5efe1241f8edc0ee73dfab4 to your computer and use it in GitHub Desktop.
Revisions
-
Bahallack created this gist
Jun 19, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ func loadWebArchive(named name: String, into webView: WKWebView) { let fileURL = self.webArchiveDirectoryURL.appendingPathComponent("\(name).webarchive") do { let archiveData = try Data(contentsOf: fileURL) webView.load(archiveData, mimeType: "application/x-webarchive", characterEncodingName: "", baseURL: fileURL) print("Web archive loaded from: \(fileURL.path)") } catch { print("Error loading web archive: \(error.localizedDescription)") } }