You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
5 years ago
|
//
|
||
|
// WKWebViewJavascriptBridge.h
|
||
|
//
|
||
|
// Created by @LokiMeyburg on 10/15/14.
|
||
|
// Copyright (c) 2014 @LokiMeyburg. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#if (__MAC_OS_X_VERSION_MAX_ALLOWED > __MAC_10_9 || __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_7_1)
|
||
|
#define supportsWKWebView
|
||
|
#endif
|
||
|
|
||
|
#if defined supportsWKWebView
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import "WebViewJavascriptBridgeBase.h"
|
||
|
#import <WebKit/WebKit.h>
|
||
|
|
||
|
@interface WKWebViewJavascriptBridge : NSObject<WKNavigationDelegate, WebViewJavascriptBridgeBaseDelegate>
|
||
|
|
||
|
+ (instancetype)bridgeForWebView:(WKWebView*)webView;
|
||
|
+ (void)enableLogging;
|
||
|
|
||
|
- (void)registerHandler:(NSString*)handlerName handler:(WVJBHandler)handler;
|
||
|
- (void)removeHandler:(NSString*)handlerName;
|
||
|
- (void)callHandler:(NSString*)handlerName;
|
||
|
- (void)callHandler:(NSString*)handlerName data:(id)data;
|
||
|
- (void)callHandler:(NSString*)handlerName data:(id)data responseCallback:(WVJBResponseCallback)responseCallback;
|
||
|
- (void)reset;
|
||
|
- (void)setWebViewDelegate:(id)webViewDelegate;
|
||
|
- (void)disableJavscriptAlertBoxSafetyTimeout;
|
||
|
|
||
|
@end
|
||
|
|
||
|
#endif
|