mirror of
https://github.com/status-im/react-native.git
synced 2025-01-28 10:14:49 +00:00
25 lines
644 B
C
25 lines
644 B
C
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
|
||
|
#import "RCTView.h"
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
#import "RCTPointerEvents.h"
|
||
|
|
||
|
@protocol RCTAutoInsetsProtocol;
|
||
|
|
||
|
@interface RCTView : UIView
|
||
|
|
||
|
@property (nonatomic, assign) RCTPointerEvents pointerEvents;
|
||
|
@property (nonatomic, copy) NSString *overrideAccessibilityLabel;
|
||
|
|
||
|
+ (void)autoAdjustInsetsForView:(UIView<RCTAutoInsetsProtocol> *)parentView
|
||
|
withScrollView:(UIScrollView *)scrollView
|
||
|
updateOffset:(BOOL)updateOffset;
|
||
|
|
||
|
+ (UIViewController *)backingViewControllerForView:(UIView *)view;
|
||
|
|
||
|
+ (UIEdgeInsets)contentInsetsForView:(UIView *)curView;
|
||
|
|
||
|
@end
|