react-native-navigation的迁移库

RNNLeafProtocol.h 330B

12345678910111213
  1. typedef void (^RNNReactViewReadyCompletionBlock)(void);
  2. @protocol RNNLeafProtocol <NSObject>
  3. - (void)waitForReactViewRender:(BOOL)wait perform:(RNNReactViewReadyCompletionBlock)readyBlock;
  4. - (void)bindViewController:(UIViewController *)viewController;
  5. - (void)mergeAndPresentOptions:(RNNNavigationOptions *)newOptions;
  6. @end