12345678910111213141516171819202122232425262728293031323334353637383940 |
- #import <React/RCTView.h>
-
- @class RNCUIWebView;
-
- /**
- * Special scheme used to pass messages to the injectedJavaScript
- * code without triggering a page load. Usage:
- *
- * window.location.href = RNCJSNavigationScheme + '://hello'
- */
- extern NSString *const RNCJSNavigationScheme;
-
- @protocol RNCUIWebViewDelegate <NSObject>
-
- - (BOOL)webView:(RNCUIWebView *)webView
- shouldStartLoadForRequest:(NSMutableDictionary<NSString *, id> *)request
- withCallback:(RCTDirectEventBlock)callback;
-
- @end
-
- @interface RNCUIWebView : RCTView
-
- @property (nonatomic, weak) id<RNCUIWebViewDelegate> 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
|