2015-03-23 22:07:33 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-03-23 22:07:33 +00:00
|
|
|
*/
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2018-07-23 20:17:33 +00:00
|
|
|
#import <React/RCTComponent.h>
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Contains any methods related to scrolling. Any `RCTView` that has scrolling
|
|
|
|
* features should implement these methods.
|
|
|
|
*/
|
|
|
|
@protocol RCTScrollableProtocol
|
|
|
|
|
|
|
|
@property (nonatomic, readonly) CGSize contentSize;
|
|
|
|
|
|
|
|
- (void)scrollToOffset:(CGPoint)offset;
|
|
|
|
- (void)scrollToOffset:(CGPoint)offset animated:(BOOL)animated;
|
2017-01-27 18:09:20 +00:00
|
|
|
/**
|
|
|
|
* If this is a vertical scroll view, scrolls to the bottom.
|
|
|
|
* If this is a horizontal scroll view, scrolls to the right.
|
|
|
|
*/
|
|
|
|
- (void)scrollToEnd:(BOOL)animated;
|
2015-01-30 01:10:49 +00:00
|
|
|
- (void)zoomToRect:(CGRect)rect animated:(BOOL)animated;
|
|
|
|
|
2016-05-12 19:16:42 +00:00
|
|
|
- (void)addScrollListener:(NSObject<UIScrollViewDelegate> *)scrollListener;
|
|
|
|
- (void)removeScrollListener:(NSObject<UIScrollViewDelegate> *)scrollListener;
|
|
|
|
|
2015-01-30 01:10:49 +00:00
|
|
|
@end
|
2018-07-23 20:17:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Denotes a view which implements custom pull to refresh functionality.
|
|
|
|
*/
|
|
|
|
@protocol RCTCustomRefreshContolProtocol
|
|
|
|
|
|
|
|
@property (nonatomic, copy) RCTDirectEventBlock onRefresh;
|
|
|
|
@property (nonatomic, readonly, getter=isRefreshing) BOOL refreshing;
|
|
|
|
|
|
|
|
@end
|