react-native-navigation的迁移库

RNNLeafProtocol.h 293B

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