I want to use window.webkit.messageHandlers.xxx
,call the xxx
iOS method .
like this in React:
import React,{ Component } from 'react';
.....
componentDidMount() {
window.webkit.messageHandlers.test.postMessage("Did finish loading");
}
but compile error:
Uncaught TypeError: Cannot read property 'messageHandlers' of undefined
what should I import ?