react-native-navigation的迁移库

RNNBasePresenter.h 579B

123456789101112131415161718
  1. #import "RNNNavigationOptions.h"
  2. @interface RNNBasePresenter : NSObject
  3. @property (nonatomic, weak) id bindedViewController;
  4. - (void)bindViewController:(UIViewController *)bindedViewController;
  5. - (void)applyOptionsOnInit:(RNNNavigationOptions *)initialOptions;
  6. - (void)applyOptions:(RNNNavigationOptions *)options;
  7. - (void)applyOptionsOnWillMoveToParentViewController:(RNNNavigationOptions *)options;
  8. - (void)mergeOptions:(RNNNavigationOptions *)newOptions currentOptions:(RNNNavigationOptions *)currentOptions defaultOptions:(RNNNavigationOptions *)defaultOptions;
  9. @end