#import @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 - (BOOL)webView:(RNCUIWebView *)webView shouldStartLoadForRequest:(NSMutableDictionary *)request withCallback:(RCTDirectEventBlock)callback; @end @interface RNCUIWebView : RCTView @property (nonatomic, weak) id 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