CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ | 
| LangLanguage | SwiftSwift | 
| License | MIT | 
| ReleasedLast Release | Jul 2017 | 
| SwiftSwift Version | 3.0 | 
| SPMSupports SPM | ✗ | 
Maintained by Network.
WKScriptMessageHandler greatly simplifies the message handler from javascript running in a webpage. WKScript provides a more efficiently way for both sending and receiving messages through WKScriptMessageHandler.
webView.bridge.register({ (parameters, completion) in
    print("print - ", parameters?["message"] ?? "")
}, for: "print")
webView.bridge.register({ (parameters, completion) in
    print("print - ", parameters?["message"] ?? "")
    completion(.success(["key": "value"]))
}, for: "some_event_need_callback")
webView.evaluateJavaScript("some_method();", completionHandler: { (results, error) in
    print(results ?? "")
})
webView.bridge.evaluate("some_method()", completion: { (results, error) in
    print(results ?? "")
})window.bridge.post('print', {message: 'Hello, world'})
// Post Event With Callback
window.bridge.post('print', {message: 'Hello, world'}, (parameters, error) => { <# Handler Parameters Or Error #>})var unregisterHandler = window.bridge.on('login', (parameters)=> {console.log('User Did Login')})
// To Remove Listener, call `unregisterHandler()`, Or Remove All Listener window.bridge.off('login')webView.bridge.post(action: "login", parameters: nil)You can include wk.bridge.min.js to your own html, or you can inject it to your html using WKUserScript.
You can Download full source-code of wk.bridge.min.js
To run the example project, clone the repo, and run pod install from the Example directory first.
iOS 8.0 +
WKBridge is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "WKBridge"WKBridge is available under the MIT license. See the LICENSE file for more info.