mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
46106f756a
Summary: public https://github.com/facebook/react-native/pull/5494 added a new `source` property to WebView on Android that provides a better API, as well as allowing for request headers to be set. This diff ports that functionality over to iOS, so we can have a consistent API cross-platform. I've also extended the API to include `method` (GET or POST) and `body` when setting the WebView content with a URI, and `baseUrl` when setting static HTML. Reviewed By: javache Differential Revision: D2884643 fb-gh-sync-id: 83f24494bdbb4e1408aa8f3b7428fee33888ae3a
44 lines
1.2 KiB
Objective-C
44 lines
1.2 KiB
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import "RCTView.h"
|
|
|
|
@class RCTWebView;
|
|
|
|
/**
|
|
* Special scheme used to pass messages to the injectedJavaScript
|
|
* code without triggering a page load. Usage:
|
|
*
|
|
* window.location.href = RCTJSNavigationScheme + '://hello'
|
|
*/
|
|
extern NSString *const RCTJSNavigationScheme;
|
|
|
|
@protocol RCTWebViewDelegate <NSObject>
|
|
|
|
- (BOOL)webView:(RCTWebView *)webView
|
|
shouldStartLoadForRequest:(NSMutableDictionary<NSString *, id> *)request
|
|
withCallback:(RCTDirectEventBlock)callback;
|
|
|
|
@end
|
|
|
|
@interface RCTWebView : RCTView
|
|
|
|
@property (nonatomic, weak) id<RCTWebViewDelegate> delegate;
|
|
|
|
@property (nonatomic, copy) NSDictionary *source;
|
|
@property (nonatomic, assign) UIEdgeInsets contentInset;
|
|
@property (nonatomic, assign) BOOL automaticallyAdjustContentInsets;
|
|
@property (nonatomic, copy) NSString *injectedJavaScript;
|
|
|
|
- (void)goForward;
|
|
- (void)goBack;
|
|
- (void)reload;
|
|
|
|
@end
|