mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 04:24:15 +00:00
abb8ea3aea
Summary: JS API very similar to web workers and node's child process. Work has been done by somebody else for the Android implementation over at #7020, so we'd need to have these in sync before anything gets merged. I've made a prop `messagingEnabled` to be more explicit about creating globals—it might be sufficient to just check for an onMessage handler though. ![screen shot 2016-09-06 at 10 28 23](https://cloud.githubusercontent.com/assets/7275322/18268669/b1a12348-741c-11e6-91a1-ad39d5a8bc03.png) Closes https://github.com/facebook/react-native/pull/9762 Differential Revision: D4008260 fbshipit-source-id: 84b1afafbc0ab1edc3dfbf1a8fb870218e171a4c
48 lines
1.3 KiB
Objective-C
48 lines
1.3 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, 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;
|
|
|
|
@end
|