react-native-navigation的迁移库

RNNNavigationControllerPresenter.h 439B

1234567891011121314
  1. #import "RNNBasePresenter.h"
  2. #import "RNNRootViewCreator.h"
  3. #import "RNNReactComponentRegistry.h"
  4. @interface RNNNavigationControllerPresenter : RNNBasePresenter
  5. - (instancetype)initWithcomponentRegistry:(RNNReactComponentRegistry *)componentRegistry;
  6. - (void)applyOptionsBeforePopping:(RNNNavigationOptions *)options;
  7. - (void)renderComponents:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock;
  8. @end