mirror of
https://github.com/status-im/react-native-webview-bridge.git
synced 2026-08-30 21:01:12 +00:00
13 lines
363 B
Objective-C
13 lines
363 B
Objective-C
#import <WebKit/WebKit.h>
|
|
|
|
@interface WVURLConnection: NSObject
|
|
|
|
@property NSString *callbackId;
|
|
@property WKWebView *webView;
|
|
|
|
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData*)data;
|
|
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error;
|
|
- (void)connectionDidFinishLoading:(NSURLConnection *)connection;
|
|
|
|
@end
|