2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import "RCTRootView.h"
|
2015-10-26 22:39:06 +00:00
|
|
|
#import "RCTRootViewDelegate.h"
|
|
|
|
#import "RCTRootViewInternal.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
#import <objc/runtime.h>
|
|
|
|
|
2015-05-12 14:44:38 +00:00
|
|
|
#import "RCTAssert.h"
|
2016-07-22 16:50:48 +00:00
|
|
|
#import "RCTBridge.h"
|
2016-08-10 14:41:54 +00:00
|
|
|
#import "RCTBridge+Private.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
#import "RCTEventDispatcher.h"
|
|
|
|
#import "RCTKeyCommands.h"
|
|
|
|
#import "RCTLog.h"
|
|
|
|
#import "RCTTouchHandler.h"
|
|
|
|
#import "RCTUIManager.h"
|
|
|
|
#import "RCTUtils.h"
|
2015-05-04 17:35:49 +00:00
|
|
|
#import "RCTView.h"
|
2017-02-20 07:05:44 +00:00
|
|
|
#import "RCTRootContentView.h"
|
2015-03-26 09:58:06 +00:00
|
|
|
#import "UIView+React.h"
|
2016-02-03 15:10:52 +00:00
|
|
|
#import "RCTProfile.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2016-12-19 14:26:07 +00:00
|
|
|
#if TARGET_OS_TV
|
|
|
|
#import "RCTTVRemoteHandler.h"
|
|
|
|
#import "RCTTVNavigationEventEmitter.h"
|
|
|
|
#endif
|
|
|
|
|
2015-05-28 20:16:06 +00:00
|
|
|
NSString *const RCTContentDidAppearNotification = @"RCTContentDidAppearNotification";
|
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
@interface RCTUIManager (RCTRootView)
|
|
|
|
|
|
|
|
- (NSNumber *)allocateRootTag;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@implementation RCTRootView
|
|
|
|
{
|
|
|
|
RCTBridge *_bridge;
|
2015-04-02 14:33:21 +00:00
|
|
|
NSString *_moduleName;
|
2015-03-26 01:59:42 +00:00
|
|
|
NSDictionary *_launchOptions;
|
2015-05-04 17:35:49 +00:00
|
|
|
RCTRootContentView *_contentView;
|
2017-01-23 19:22:39 +00:00
|
|
|
BOOL _passThroughTouches;
|
2017-02-27 18:47:30 +00:00
|
|
|
CGSize _intrinsicContentSize;
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-05-26 11:14:31 +00:00
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge
|
2015-04-02 14:33:21 +00:00
|
|
|
moduleName:(NSString *)moduleName
|
2015-08-17 11:38:19 +00:00
|
|
|
initialProperties:(NSDictionary *)initialProperties
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2016-06-06 14:57:55 +00:00
|
|
|
RCTAssertMainQueue();
|
2015-04-02 14:33:21 +00:00
|
|
|
RCTAssert(bridge, @"A bridge instance is required to create an RCTRootView");
|
|
|
|
RCTAssert(moduleName, @"A moduleName is required to create an RCTRootView");
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2016-05-14 00:14:59 +00:00
|
|
|
RCT_PROFILE_BEGIN_EVENT(RCTProfileTagAlways, @"-[RCTRootView init]", nil);
|
2016-02-03 15:10:52 +00:00
|
|
|
|
2017-02-27 18:47:27 +00:00
|
|
|
if (self = [super initWithFrame:CGRectZero]) {
|
2015-04-11 22:08:00 +00:00
|
|
|
self.backgroundColor = [UIColor whiteColor];
|
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
_bridge = bridge;
|
|
|
|
_moduleName = moduleName;
|
2015-10-30 16:26:22 +00:00
|
|
|
_appProperties = [initialProperties copy];
|
2015-05-28 20:16:06 +00:00
|
|
|
_loadingViewFadeDelay = 0.25;
|
|
|
|
_loadingViewFadeDuration = 0.25;
|
2015-10-26 22:39:04 +00:00
|
|
|
_sizeFlexibility = RCTRootViewSizeFlexibilityNone;
|
2015-04-11 22:08:00 +00:00
|
|
|
|
2016-02-12 16:31:54 +00:00
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
|
|
selector:@selector(bridgeDidReload)
|
|
|
|
name:RCTJavaScriptWillStartLoadingNotification
|
|
|
|
object:_bridge];
|
|
|
|
|
2015-04-11 22:08:00 +00:00
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
2015-05-04 17:35:49 +00:00
|
|
|
selector:@selector(javaScriptDidLoad:)
|
2015-04-11 22:08:00 +00:00
|
|
|
name:RCTJavaScriptDidLoadNotification
|
|
|
|
object:_bridge];
|
2015-05-28 20:16:06 +00:00
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
|
|
selector:@selector(hideLoadingView)
|
|
|
|
name:RCTContentDidAppearNotification
|
|
|
|
object:self];
|
2016-02-12 16:31:54 +00:00
|
|
|
|
2016-12-19 14:26:07 +00:00
|
|
|
#if TARGET_OS_TV
|
|
|
|
self.tvRemoteHandler = [RCTTVRemoteHandler new];
|
|
|
|
for (UIGestureRecognizer *gr in self.tvRemoteHandler.tvRemoteGestureRecognizers) {
|
|
|
|
[self addGestureRecognizer:gr];
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-05-28 20:16:06 +00:00
|
|
|
[self showLoadingView];
|
2017-04-21 13:53:28 +00:00
|
|
|
|
|
|
|
// Immediately schedule the application to be started
|
|
|
|
[self bundleFinishedLoading:[_bridge batchedBridge]];
|
2015-04-02 14:33:21 +00:00
|
|
|
}
|
2016-02-03 15:10:52 +00:00
|
|
|
|
2016-09-05 18:11:37 +00:00
|
|
|
RCT_PROFILE_END_EVENT(RCTProfileTagAlways, @"");
|
2016-02-03 15:10:52 +00:00
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
return self;
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 01:59:42 +00:00
|
|
|
- (instancetype)initWithBundleURL:(NSURL *)bundleURL
|
|
|
|
moduleName:(NSString *)moduleName
|
2015-08-17 11:38:19 +00:00
|
|
|
initialProperties:(NSDictionary *)initialProperties
|
2015-03-26 01:59:42 +00:00
|
|
|
launchOptions:(NSDictionary *)launchOptions
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-04-11 22:08:00 +00:00
|
|
|
RCTBridge *bridge = [[RCTBridge alloc] initWithBundleURL:bundleURL
|
|
|
|
moduleProvider:nil
|
|
|
|
launchOptions:launchOptions];
|
2015-04-02 14:33:21 +00:00
|
|
|
|
2015-08-17 11:38:19 +00:00
|
|
|
return [self initWithBridge:bridge moduleName:moduleName initialProperties:initialProperties];
|
2015-04-02 14:33:21 +00:00
|
|
|
}
|
|
|
|
|
2015-08-24 10:14:33 +00:00
|
|
|
RCT_NOT_IMPLEMENTED(- (instancetype)initWithFrame:(CGRect)frame)
|
|
|
|
RCT_NOT_IMPLEMENTED(- (instancetype)initWithCoder:(NSCoder *)aDecoder)
|
2015-06-15 14:53:45 +00:00
|
|
|
|
2016-12-19 14:26:07 +00:00
|
|
|
#if TARGET_OS_TV
|
|
|
|
- (UIView *)preferredFocusedView
|
|
|
|
{
|
|
|
|
if (self.reactPreferredFocusedView) {
|
|
|
|
return self.reactPreferredFocusedView;
|
|
|
|
}
|
|
|
|
return [super preferredFocusedView];
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-05-26 11:14:31 +00:00
|
|
|
- (void)setBackgroundColor:(UIColor *)backgroundColor
|
|
|
|
{
|
2015-05-27 09:30:57 +00:00
|
|
|
super.backgroundColor = backgroundColor;
|
2015-05-26 11:14:31 +00:00
|
|
|
_contentView.backgroundColor = backgroundColor;
|
|
|
|
}
|
|
|
|
|
2017-02-27 18:47:27 +00:00
|
|
|
#pragma mark - passThroughTouches
|
|
|
|
|
2016-11-03 16:55:20 +00:00
|
|
|
- (BOOL)passThroughTouches
|
|
|
|
{
|
|
|
|
return _contentView.passThroughTouches;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)setPassThroughTouches:(BOOL)passThroughTouches
|
|
|
|
{
|
2017-01-23 19:22:39 +00:00
|
|
|
_passThroughTouches = passThroughTouches;
|
2016-11-03 16:55:20 +00:00
|
|
|
_contentView.passThroughTouches = passThroughTouches;
|
|
|
|
}
|
|
|
|
|
2017-02-27 18:47:27 +00:00
|
|
|
#pragma mark - Layout
|
|
|
|
|
|
|
|
- (CGSize)sizeThatFits:(CGSize)size
|
|
|
|
{
|
2017-03-13 20:19:55 +00:00
|
|
|
CGSize fitSize = _intrinsicContentSize;
|
|
|
|
CGSize currentSize = self.bounds.size;
|
|
|
|
|
|
|
|
// Following the current `size` and current `sizeFlexibility` policy.
|
|
|
|
fitSize = CGSizeMake(
|
|
|
|
_sizeFlexibility & RCTRootViewSizeFlexibilityWidth ? fitSize.width : currentSize.width,
|
|
|
|
_sizeFlexibility & RCTRootViewSizeFlexibilityHeight ? fitSize.height : currentSize.height
|
|
|
|
);
|
|
|
|
|
|
|
|
// Following the given size constraints.
|
|
|
|
fitSize = CGSizeMake(
|
|
|
|
MIN(size.width, fitSize.width),
|
|
|
|
MIN(size.height, fitSize.height)
|
|
|
|
);
|
|
|
|
|
|
|
|
return fitSize;
|
2017-02-27 18:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)layoutSubviews
|
|
|
|
{
|
|
|
|
[super layoutSubviews];
|
|
|
|
_contentView.frame = self.bounds;
|
|
|
|
_loadingView.center = (CGPoint){
|
|
|
|
CGRectGetMidX(self.bounds),
|
|
|
|
CGRectGetMidY(self.bounds)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2015-07-31 18:23:29 +00:00
|
|
|
- (UIViewController *)reactViewController
|
2015-04-15 00:51:28 +00:00
|
|
|
{
|
2015-07-31 18:23:29 +00:00
|
|
|
return _reactViewController ?: [super reactViewController];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 00:33:54 +00:00
|
|
|
- (BOOL)canBecomeFirstResponder
|
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2015-05-28 20:16:06 +00:00
|
|
|
- (void)setLoadingView:(UIView *)loadingView
|
|
|
|
{
|
|
|
|
_loadingView = loadingView;
|
|
|
|
if (!_contentView.contentHasAppeared) {
|
|
|
|
[self showLoadingView];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)showLoadingView
|
|
|
|
{
|
|
|
|
if (_loadingView && !_contentView.contentHasAppeared) {
|
|
|
|
_loadingView.hidden = NO;
|
|
|
|
[self addSubview:_loadingView];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)hideLoadingView
|
|
|
|
{
|
|
|
|
if (_loadingView.superview == self && _contentView.contentHasAppeared) {
|
2015-10-06 17:32:04 +00:00
|
|
|
if (_loadingViewFadeDuration > 0) {
|
|
|
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(_loadingViewFadeDelay * NSEC_PER_SEC)),
|
|
|
|
dispatch_get_main_queue(), ^{
|
|
|
|
|
|
|
|
[UIView transitionWithView:self
|
2016-07-07 19:36:56 +00:00
|
|
|
duration:self->_loadingViewFadeDuration
|
2015-10-06 17:32:04 +00:00
|
|
|
options:UIViewAnimationOptionTransitionCrossDissolve
|
|
|
|
animations:^{
|
2016-07-07 19:36:56 +00:00
|
|
|
self->_loadingView.hidden = YES;
|
2015-10-06 17:32:04 +00:00
|
|
|
} completion:^(__unused BOOL finished) {
|
2016-07-07 19:36:56 +00:00
|
|
|
[self->_loadingView removeFromSuperview];
|
2015-10-06 17:32:04 +00:00
|
|
|
}];
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
_loadingView.hidden = YES;
|
|
|
|
[_loadingView removeFromSuperview];
|
|
|
|
}
|
2015-05-28 20:16:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 16:31:54 +00:00
|
|
|
- (NSNumber *)reactTag
|
|
|
|
{
|
2016-06-06 14:57:55 +00:00
|
|
|
RCTAssertMainQueue();
|
2016-02-12 16:31:54 +00:00
|
|
|
if (!super.reactTag) {
|
|
|
|
/**
|
|
|
|
* Every root view that is created must have a unique react tag.
|
|
|
|
* Numbering of these tags goes from 1, 11, 21, 31, etc
|
|
|
|
*
|
|
|
|
* NOTE: Since the bridge persists, the RootViews might be reused, so the
|
|
|
|
* react tag must be re-assigned every time a new UIManager is created.
|
|
|
|
*/
|
|
|
|
self.reactTag = [_bridge.uiManager allocateRootTag];
|
|
|
|
}
|
|
|
|
return super.reactTag;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)bridgeDidReload
|
|
|
|
{
|
2016-06-06 14:57:55 +00:00
|
|
|
RCTAssertMainQueue();
|
2016-02-12 16:31:54 +00:00
|
|
|
// Clear the reactTag so it can be re-assigned
|
|
|
|
self.reactTag = nil;
|
|
|
|
}
|
|
|
|
|
2015-05-04 17:35:49 +00:00
|
|
|
- (void)javaScriptDidLoad:(NSNotification *)notification
|
|
|
|
{
|
2016-06-06 14:57:55 +00:00
|
|
|
RCTAssertMainQueue();
|
2016-08-10 14:41:54 +00:00
|
|
|
|
|
|
|
// Use the (batched) bridge that's sent in the notification payload, so the
|
|
|
|
// RCTRootContentView is scoped to the right bridge
|
2015-05-04 17:35:49 +00:00
|
|
|
RCTBridge *bridge = notification.userInfo[@"bridge"];
|
2017-04-21 13:53:28 +00:00
|
|
|
if (bridge != _contentView.bridge) {
|
|
|
|
[self bundleFinishedLoading:bridge];
|
|
|
|
}
|
2015-05-04 17:35:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)bundleFinishedLoading:(RCTBridge *)bridge
|
2015-02-20 04:10:52 +00:00
|
|
|
{
|
2017-04-21 13:53:28 +00:00
|
|
|
RCTAssert(bridge != nil, @"Bridge cannot be nil");
|
2015-08-17 11:38:19 +00:00
|
|
|
if (!bridge.valid) {
|
|
|
|
return;
|
|
|
|
}
|
2015-04-10 14:28:10 +00:00
|
|
|
|
2015-08-17 11:38:19 +00:00
|
|
|
[_contentView removeFromSuperview];
|
2016-02-12 16:31:54 +00:00
|
|
|
_contentView = [[RCTRootContentView alloc] initWithFrame:self.bounds
|
|
|
|
bridge:bridge
|
2016-04-20 17:52:25 +00:00
|
|
|
reactTag:self.reactTag
|
2016-08-10 17:44:51 +00:00
|
|
|
sizeFlexiblity:_sizeFlexibility];
|
2016-02-03 15:10:52 +00:00
|
|
|
[self runApplication:bridge];
|
|
|
|
|
2015-08-17 11:38:19 +00:00
|
|
|
_contentView.backgroundColor = self.backgroundColor;
|
2017-01-23 19:22:39 +00:00
|
|
|
_contentView.passThroughTouches = _passThroughTouches;
|
2015-08-17 11:38:19 +00:00
|
|
|
[self insertSubview:_contentView atIndex:0];
|
2016-08-10 17:44:51 +00:00
|
|
|
|
|
|
|
if (_sizeFlexibility == RCTRootViewSizeFlexibilityNone) {
|
2017-02-27 18:47:30 +00:00
|
|
|
self.intrinsicContentSize = self.bounds.size;
|
2016-08-10 17:44:51 +00:00
|
|
|
}
|
2015-10-30 16:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)runApplication:(RCTBridge *)bridge
|
|
|
|
{
|
2015-08-17 11:38:19 +00:00
|
|
|
NSString *moduleName = _moduleName ?: @"";
|
|
|
|
NSDictionary *appParameters = @{
|
|
|
|
@"rootTag": _contentView.reactTag,
|
2015-10-30 16:26:22 +00:00
|
|
|
@"initialProps": _appProperties ?: @{},
|
2015-08-17 11:38:19 +00:00
|
|
|
};
|
2015-05-28 20:16:06 +00:00
|
|
|
|
2016-08-31 23:08:55 +00:00
|
|
|
RCTLogInfo(@"Running application %@ (%@)", moduleName, appParameters);
|
2016-08-02 18:06:19 +00:00
|
|
|
[bridge enqueueJSCall:@"AppRegistry"
|
|
|
|
method:@"runApplication"
|
|
|
|
args:@[moduleName, appParameters]
|
|
|
|
completion:NULL];
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
|
2015-10-26 22:39:04 +00:00
|
|
|
- (void)setSizeFlexibility:(RCTRootViewSizeFlexibility)sizeFlexibility
|
|
|
|
{
|
2017-02-20 07:05:42 +00:00
|
|
|
if (_sizeFlexibility == sizeFlexibility) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-10-26 22:39:04 +00:00
|
|
|
_sizeFlexibility = sizeFlexibility;
|
|
|
|
[self setNeedsLayout];
|
2017-02-20 07:05:42 +00:00
|
|
|
_contentView.sizeFlexibility = _sizeFlexibility;
|
2015-10-26 22:39:04 +00:00
|
|
|
}
|
|
|
|
|
2016-11-03 16:55:20 +00:00
|
|
|
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
|
|
|
|
{
|
|
|
|
// The root view itself should never receive touches
|
|
|
|
UIView *hitView = [super hitTest:point withEvent:event];
|
|
|
|
if (self.passThroughTouches && hitView == self) {
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
return hitView;
|
|
|
|
}
|
|
|
|
|
2015-10-30 16:26:22 +00:00
|
|
|
- (void)setAppProperties:(NSDictionary *)appProperties
|
|
|
|
{
|
2016-06-06 14:57:55 +00:00
|
|
|
RCTAssertMainQueue();
|
2015-10-30 16:26:22 +00:00
|
|
|
|
|
|
|
if ([_appProperties isEqualToDictionary:appProperties]) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_appProperties = [appProperties copy];
|
|
|
|
|
2015-11-11 20:02:23 +00:00
|
|
|
if (_contentView && _bridge.valid && !_bridge.loading) {
|
2016-07-22 16:50:48 +00:00
|
|
|
[self runApplication:_bridge];
|
2015-10-30 16:26:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-27 18:47:30 +00:00
|
|
|
- (void)setIntrinsicContentSize:(CGSize)intrinsicContentSize
|
2015-10-26 22:39:06 +00:00
|
|
|
{
|
2017-02-27 18:47:30 +00:00
|
|
|
BOOL oldSizeHasAZeroDimension = _intrinsicContentSize.height == 0 || _intrinsicContentSize.width == 0;
|
|
|
|
BOOL newSizeHasAZeroDimension = intrinsicContentSize.height == 0 || intrinsicContentSize.width == 0;
|
2015-11-13 16:25:16 +00:00
|
|
|
BOOL bothSizesHaveAZeroDimension = oldSizeHasAZeroDimension && newSizeHasAZeroDimension;
|
|
|
|
|
2017-02-27 18:47:30 +00:00
|
|
|
BOOL sizesAreEqual = CGSizeEqualToSize(_intrinsicContentSize, intrinsicContentSize);
|
2015-11-13 16:25:16 +00:00
|
|
|
|
2017-02-27 18:47:30 +00:00
|
|
|
_intrinsicContentSize = intrinsicContentSize;
|
2015-11-13 16:25:16 +00:00
|
|
|
|
2017-02-27 18:47:27 +00:00
|
|
|
[self invalidateIntrinsicContentSize];
|
|
|
|
[self.superview setNeedsLayout];
|
|
|
|
|
2015-11-13 16:25:16 +00:00
|
|
|
// Don't notify the delegate if the content remains invisible or its size has not changed
|
|
|
|
if (bothSizesHaveAZeroDimension || sizesAreEqual) {
|
|
|
|
return;
|
2015-10-26 22:39:06 +00:00
|
|
|
}
|
2015-11-13 16:25:16 +00:00
|
|
|
|
|
|
|
[_delegate rootViewDidChangeIntrinsicSize:self];
|
2015-10-26 22:39:06 +00:00
|
|
|
}
|
|
|
|
|
2017-02-27 18:47:27 +00:00
|
|
|
- (CGSize)intrinsicContentSize
|
|
|
|
{
|
2017-02-27 18:47:30 +00:00
|
|
|
return _intrinsicContentSize;
|
2017-02-27 18:47:27 +00:00
|
|
|
}
|
|
|
|
|
2015-05-28 20:16:06 +00:00
|
|
|
- (void)contentViewInvalidated
|
|
|
|
{
|
|
|
|
[_contentView removeFromSuperview];
|
|
|
|
_contentView = nil;
|
|
|
|
[self showLoadingView];
|
|
|
|
}
|
|
|
|
|
2015-05-04 17:35:49 +00:00
|
|
|
- (void)dealloc
|
|
|
|
{
|
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
2015-05-12 14:44:38 +00:00
|
|
|
[_contentView invalidate];
|
2015-05-04 17:35:49 +00:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:43:58 +00:00
|
|
|
- (void)cancelTouches
|
|
|
|
{
|
|
|
|
[[_contentView touchHandler] cancel];
|
|
|
|
}
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
@end
|
2015-04-02 14:33:21 +00:00
|
|
|
|
2017-02-27 18:47:30 +00:00
|
|
|
@implementation RCTRootView (Deprecated)
|
|
|
|
|
|
|
|
- (CGSize)intrinsicSize
|
|
|
|
{
|
|
|
|
RCTLogWarn(@"Calling deprecated `[-RCTRootView intrinsicSize]`.");
|
|
|
|
return self.intrinsicContentSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2015-04-02 14:33:21 +00:00
|
|
|
@implementation RCTUIManager (RCTRootView)
|
|
|
|
|
|
|
|
- (NSNumber *)allocateRootTag
|
|
|
|
{
|
|
|
|
NSNumber *rootTag = objc_getAssociatedObject(self, _cmd) ?: @1;
|
|
|
|
objc_setAssociatedObject(self, _cmd, @(rootTag.integerValue + 10), OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
|
|
|
return rootTag;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|