1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
-
-
- #import <React/RCTView.h>
-
- @class RNCWebView;
-
-
- extern NSString *const RNCJSNavigationScheme;
-
- @protocol RNCWebViewDelegate <NSObject>
-
- - (BOOL)webView:(RNCWebView *)webView
- shouldStartLoadForRequest:(NSMutableDictionary<NSString *, id> *)request
- withCallback:(RCTDirectEventBlock)callback;
-
- @end
-
- @interface RNCWebView : RCTView
-
- @property (nonatomic, weak) id<RNCWebViewDelegate> delegate;
-
- @property (nonatomic, copy) NSDictionary *source;
- @property (nonatomic, assign) UIEdgeInsets contentInset;
- @property (nonatomic, assign) BOOL automaticallyAdjustContentInsets;
- @property (nonatomic, assign) BOOL messagingEnabled;
- @property (nonatomic, copy) NSString *injectedJavaScript;
- @property (nonatomic, assign) BOOL scalesPageToFit;
-
- - (void)goForward;
- - (void)goBack;
- - (void)reload;
- - (void)stopLoading;
- - (void)postMessage:(NSString *)message;
- - (void)injectJavaScript:(NSString *)script;
-
- @end
|