react-native-webview/ios/RNCUIWebView.h

40 lines
1.1 KiB
C
Raw Normal View History

#import <React/RCTView.h>
2018-09-18 16:32:16 +00:00
@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;
2018-09-18 16:32:16 +00:00
@protocol RNCUIWebViewDelegate <NSObject>
2018-09-18 16:32:16 +00:00
- (BOOL)webView:(RNCUIWebView *)webView
shouldStartLoadForRequest:(NSMutableDictionary<NSString *, id> *)request
withCallback:(RCTDirectEventBlock)callback;
@end
2018-09-18 16:32:16 +00:00
@interface RNCUIWebView : RCTView
2018-09-18 16:32:16 +00:00
@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