You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage) {
let json = message.json
print("json ------- (json)")
}
In the above method, if the interface executes postMessage(signTypedMessage)
but
print("json ------- (json)")
does not execute
why ?
The text was updated successfully, but these errors were encountered:
func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage) {
let json = message.json
print("json ------- (json)")
}
In the above method, if the interface executes postMessage(signTypedMessage)
but
print("json ------- (json)")
does not execute
why ?
The text was updated successfully, but these errors were encountered: