react-native-navigation的迁移库

RNNStackPresenter.h 491B

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