WKWebview 캡처 클릭 이벤트

1261 단어 IOS
1.js 주입:
let userContent = WKUserContentController()
userContent.add(self, name: "quitCourse")
let jsContent = " function quit() {  window.webkit.messageHandlers.quitCourse.postMessage(null);}(function(){   var btn = document.getElementById('quit_course');btn.addEventListener('click',quit,false);}());"
userContent.addUserScript(WKUserScript(source: jsContent, injectionTime: .atDocumentEnd, forMainFrameOnly: true))
        
let confiration = WKWebViewConfiguration()
confiration.userContentController = userContent
        
webView = WKWebView(frame:CGRect(x: 0, y: 20, width: view.bounds.size.width, height: courseView.bounds.size.height), configuration: confiration)
webView.navigationDelegate = self;
webView.uiDelegate = self;

2. 원생 포획 사건:
extension  YKIPCourseViewController:WKScriptMessageHandler{
  
    public func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage){
        if message.name == "quitCourse" {
            self.back(nil)
        }
    }

}

주의: 제 프로젝트에서 웹 페이지가 한 번 돌았기 때문에 js 주입 주입 이벤트 감청은 무효입니다. 따라서 전단 개발자만 자발적으로 호출합니다: 윈도우.webkit.messageHandlers.quitCourse.postMessage(null);

좋은 웹페이지 즐겨찾기