Skip to content

Instantly share code, notes, and snippets.

@luomein
luomein / ContentView.swift
Created June 13, 2023 13:17 — forked from JSerZANP/ContentView.swift
communication between native(swiftUI) and wkwebview
import SwiftUI
import WebKit
struct WebView: UIViewRepresentable {
class Coordinator: NSObject, WKNavigationDelegate, WKScriptMessageHandler {
var webView: WKWebView?
func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {
self.webView = webView
}