react-native-navigation的迁移库

RNNLeafProtocol.h 360B

12345678910111213141516
  1. #import "RNNRootViewCreator.h"
  2. typedef void (^RNNReactViewReadyCompletionBlock)(void);
  3. @protocol RNNLeafProtocol <NSObject>
  4. - (void)waitForReactViewRender:(BOOL)wait perform:(RNNReactViewReadyCompletionBlock)readyBlock;
  5. - (void)bindViewController:(UIViewController *)viewController;
  6. - (BOOL)isCustomTransitioned;
  7. - (id<RNNRootViewCreator>)creator;
  8. @end