react-native-navigation的迁移库

RNNLeafProtocol.h 364B

1234567891011121314
  1. #import "RNNLayoutProtocol.h"
  2. typedef void (^RNNReactViewReadyCompletionBlock)(void);
  3. @protocol RNNLeafProtocol <RNNLayoutProtocol>
  4. - (void)waitForReactViewRender:(BOOL)wait perform:(RNNReactViewReadyCompletionBlock)readyBlock;
  5. - (UIViewController<RNNLeafProtocol> *)getLeafViewController;
  6. - (void)bindViewController:(UIViewController *)viewController;
  7. @end