11 lines
280 B
Objective-C
11 lines
280 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface RNSScrollViewHelper : NSObject
|
|
|
|
/**
|
|
* Finds and overrides contentInsetAdjustmentBehavior for first ScrollView in first descendant chain from view.
|
|
*/
|
|
+ (void)overrideScrollViewBehaviorInFirstDescendantChainFrom:(nullable UIView *)view;
|
|
|
|
@end
|