// Copyright 2004-present Facebook. All Rights Reserved. #import #import "RCTBridgeModule.h" #import "RCTInvalidating.h" @class RCTRootView; @protocol RCTScrollableProtocol; @interface RCTUIManager : NSObject @property (nonatomic, weak) id mainScrollView; /** * Allows native environment code to respond to "the main scroll view" events. * see `RCTUIManager`'s `setMainScrollViewTag`. */ @property (nonatomic, readwrite, weak) id nativeMainScrollDelegate; - (void)registerRootView:(RCTRootView *)rootView; + (UIView *)JSResponder; @end