react-native-webview.git

RNCWebView.h 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /**
  2. * Copyright (c) 2015-present, Facebook, Inc.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. #import <React/RCTView.h>
  8. #import <React/RCTDefines.h>
  9. #import <WebKit/WebKit.h>
  10. @class RNCWebView;
  11. @protocol RNCWebViewDelegate <NSObject>
  12. - (BOOL)webView:(RNCWebView *_Nonnull)webView
  13. shouldStartLoadForRequest:(NSMutableDictionary<NSString *, id> *_Nonnull)request
  14. withCallback:(RCTDirectEventBlock _Nonnull)callback;
  15. @end
  16. @interface RNCWeakScriptMessageDelegate : NSObject<WKScriptMessageHandler>
  17. @property (nonatomic, weak) id<WKScriptMessageHandler> scriptDelegate;
  18. - (instancetype)initWithDelegate:(id<WKScriptMessageHandler>)scriptDelegate;
  19. @end
  20. @interface RNCWebView : RCTView
  21. @property (nonatomic, weak) id<RNCWebViewDelegate> _Nullable delegate;
  22. @property (nonatomic, copy) NSDictionary * _Nullable source;
  23. @property (nonatomic, assign) BOOL messagingEnabled;
  24. @property (nonatomic, copy) NSString * _Nullable injectedJavaScript;
  25. @property (nonatomic, copy) NSString * _Nullable injectedJavaScriptBeforeContentLoaded;
  26. @property (nonatomic, assign) BOOL scrollEnabled;
  27. @property (nonatomic, assign) BOOL sharedCookiesEnabled;
  28. @property (nonatomic, assign) BOOL pagingEnabled;
  29. @property (nonatomic, assign) CGFloat decelerationRate;
  30. @property (nonatomic, assign) BOOL allowsInlineMediaPlayback;
  31. @property (nonatomic, assign) BOOL bounces;
  32. @property (nonatomic, assign) BOOL mediaPlaybackRequiresUserAction;
  33. #if WEBKIT_IOS_10_APIS_AVAILABLE
  34. @property (nonatomic, assign) WKDataDetectorTypes dataDetectorTypes;
  35. #endif
  36. @property (nonatomic, assign) UIEdgeInsets contentInset;
  37. @property (nonatomic, assign) BOOL automaticallyAdjustContentInsets;
  38. @property (nonatomic, assign) BOOL keyboardDisplayRequiresUserAction;
  39. @property (nonatomic, assign) BOOL hideKeyboardAccessoryView;
  40. @property (nonatomic, assign) BOOL allowsBackForwardNavigationGestures;
  41. @property (nonatomic, assign) BOOL incognito;
  42. @property (nonatomic, assign) BOOL useSharedProcessPool;
  43. @property (nonatomic, copy) NSString * _Nullable userAgent;
  44. @property (nonatomic, copy) NSString * _Nullable applicationNameForUserAgent;
  45. @property (nonatomic, assign) BOOL cacheEnabled;
  46. @property (nonatomic, assign) BOOL javaScriptEnabled;
  47. @property (nonatomic, assign) BOOL allowFileAccessFromFileURLs;
  48. @property (nonatomic, assign) BOOL allowsLinkPreview;
  49. @property (nonatomic, assign) BOOL showsHorizontalScrollIndicator;
  50. @property (nonatomic, assign) BOOL showsVerticalScrollIndicator;
  51. @property (nonatomic, assign) BOOL directionalLockEnabled;
  52. @property (nonatomic, copy) NSString * _Nullable allowingReadAccessToURL;
  53. + (void)setClientAuthenticationCredential:(nullable NSURLCredential*)credential;
  54. + (void)setCustomCertificatesForHost:(nullable NSDictionary *)certificates;
  55. - (void)postMessage:(NSString *_Nullable)message;
  56. - (void)injectJavaScript:(NSString *_Nullable)script;
  57. - (void)goForward;
  58. - (void)goBack;
  59. - (void)reload;
  60. - (void)stopLoading;
  61. @end