mirror of
https://github.com/status-im/react-native.git
synced 2025-01-14 11:34:23 +00:00
4f613e20d2
- [ReactServer] Fix newly introduced bug | Amjad Masad - [ReactServer] Last sync from github | Amjad Masad - [RFC-ReactNative] Subscribable overhaul, clean up AppState/Reachability | Eric Vicenti - [ReactKit] Enable tappable <Text /> subnodes | Alex Akers
27 lines
707 B
Objective-C
27 lines
707 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
/**
|
|
|
|
* Logical node in a tree of application components. Both `ShadowView`s and
|
|
* `UIView+ReactKit`s conform to this. Allows us to write utilities that
|
|
* reason about trees generally.
|
|
*/
|
|
@protocol RCTViewNodeProtocol <NSObject>
|
|
|
|
@property (nonatomic, strong) NSNumber *reactTag;
|
|
|
|
- (void)insertReactSubview:(id<RCTViewNodeProtocol>)subview atIndex:(NSInteger)atIndex;
|
|
- (void)removeReactSubview:(id<RCTViewNodeProtocol>)subview;
|
|
- (NSMutableArray *)reactSubviews;
|
|
- (NSNumber *)reactTagAtPoint:(CGPoint)point;
|
|
|
|
// View is an RCTRootView
|
|
- (BOOL)isReactRootView;
|
|
|
|
@optional
|
|
|
|
// TODO: Deprecate this
|
|
- (void)reactBridgeDidFinishTransaction;
|
|
|
|
@end
|