mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
ba4c34c0db
Summary: We deprecated it a while back and nobody is using it internally. Reviewed By: majak Differential Revision: D3542602 fbshipit-source-id: dfe11a47b21d2f8a7c946c902f0ea427615ffc31
28 lines
875 B
Objective-C
28 lines
875 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
/**
|
|
* 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;
|
|
- (void)zoomToRect:(CGRect)rect animated:(BOOL)animated;
|
|
|
|
- (void)addScrollListener:(NSObject<UIScrollViewDelegate> *)scrollListener;
|
|
- (void)removeScrollListener:(NSObject<UIScrollViewDelegate> *)scrollListener;
|
|
|
|
@end
|