13 lines
294 B
Objective-C
13 lines
294 B
Objective-C
#pragma once
|
|
|
|
#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
|