react-native-navigation的迁移库

RNNNavigationControllerPresenter.h 462B

123456789101112131415
  1. #import "RNNBasePresenter.h"
  2. #import "RNNRootViewCreator.h"
  3. #import "RNNReactComponentRegistry.h"
  4. #import "InteractivePopGestureDelegate.h"
  5. @interface RNNNavigationControllerPresenter : RNNBasePresenter
  6. @property (nonatomic, strong) InteractivePopGestureDelegate *interactivePopGestureDelegate;
  7. - (instancetype)initWithComponentRegistry:(RNNReactComponentRegistry *)componentRegistry;
  8. - (void)applyOptionsBeforePopping:(RNNNavigationOptions *)options;
  9. @end