Add doc comment for mainScrollView

This commit is contained in:
Nick Lockwood 2015-08-20 15:35:23 -01:00
parent debca6d24f
commit c27e5198e2
1 changed files with 5 additions and 0 deletions

View File

@ -44,6 +44,11 @@ RCT_EXTERN NSString *const RCTUIManagerRootViewKey;
*/
@interface RCTUIManager : NSObject <RCTBridgeModule, RCTInvalidating>
/**
* The UIIManager has the concept of a designated "main scroll view", which is
* useful for apps built around a central scrolling content area (e.g. a
* timeline).
*/
@property (nonatomic, weak) id<RCTScrollableProtocol> mainScrollView;
/**